Commit e133293a authored by Michael Apfelthaler's avatar Michael Apfelthaler

init

parent 14708678
name: ved
name: craft-hebotek
type: craftcms
docroot: web
php_version: "8.1"
php_version: "8.2"
webserver_type: nginx-fpm
xdebug_enabled: false
additional_hostnames: []
......@@ -12,17 +12,21 @@ database:
use_dns_when_possible: true
composer_version: "2"
web_environment: []
corepack_enable: false
# Key features of DDEV's config.yaml:
# name: <projectname> # Name of the project, automatically provides
# http://projectname.ddev.site and https://projectname.ddev.site
# type: <projecttype> # drupal6/7/8, backdrop, typo3, wordpress, php
# type: <projecttype> # backdrop, craftcms, django4, drupal, drupal6, drupal7, laravel, magento, magento2, php, python, shopware6, silverstripe, typo3, wordpress
# See https://ddev.readthedocs.io/en/stable/users/quickstart/ for more
# information on the different project types
# "drupal" covers recent Drupal 8+
# docroot: <relative_path> # Relative path to the directory containing index.php.
# php_version: "8.1" # PHP version to use, "5.6", "7.0", "7.1", "7.2", "7.3", "7.4", "8.0", "8.1", "8.2", "8.3"
# php_version: "8.2" # PHP version to use, "5.6", "7.0", "7.1", "7.2", "7.3", "7.4", "8.0", "8.1", "8.2", "8.3"
# You can explicitly specify the webimage but this
# is not recommended, as the images are often closely tied to DDEV's' behavior,
......@@ -32,7 +36,7 @@ web_environment: []
# database:
# type: <dbtype> # mysql, mariadb, postgres
# version: <version> # database version, like "10.4" or "8.0"
# version: <version> # database version, like "10.11" or "8.0"
# MariaDB versions can be 5.5-10.8 and 10.11, MySQL versions can be 5.5-8.0
# PostgreSQL versions can be 9-16.
......@@ -73,12 +77,17 @@ web_environment: []
# Alternatively, an explicit Composer version may be specified, for example "2.2.18".
# To reinstall Composer after the image was built, run "ddev debug refresh".
# nodejs_version: "18"
# change from the default system Node.js version to another supported version, like 16, 18, 20.
# Note that you can use 'ddev nvm' or nvm inside the web container to provide nearly any
# Node.js version, including v6, etc.
# You only need to configure this if you are not using nvm and you want to use a major
# version that is not the default.
# nodejs_version: "20"
# change from the default system Node.js version to any other version.
# Numeric version numbers can be complete (i.e. 18.15.0) or
# incomplete (18, 17.2, 16). 'lts' and 'latest' can be used as well along with
# other named releases.
# see https://www.npmjs.com/package/n#specifying-nodejs-versions
# Note that you can continue using 'ddev nvm' or nvm inside the web container
# to change the project's installed node version if you need to.
# corepack_enable: false
# Change to 'true' to 'corepack enable' and gain access to latest versions of yarn/pnpm
# additional_hostnames:
# - somename
......@@ -137,8 +146,8 @@ web_environment: []
# - "mutagen": enables Mutagen for this project.
# - "nfs": enables NFS for this project.
#
# See https://ddev.readthedocs.io/en/latest/users/install/performance/#nfs
# See https://ddev.readthedocs.io/en/latest/users/install/performance/#mutagen
# See https://ddev.readthedocs.io/en/stable/users/install/performance/#nfs
# See https://ddev.readthedocs.io/en/stable/users/install/performance/#mutagen
# fail_on_hook_fail: False
# Decide whether 'ddev start' should be interrupted by a failing hook
......@@ -167,7 +176,7 @@ web_environment: []
# The mailpit port is not normally bound on the host at all, instead being routed
# through ddev-router, but it can be bound directly to localhost if specified here.
# webimage_extra_packages: [php7.4-tidy, php-bcmath]
webimage_extra_packages: [php7.4-tidy, php-bcmath]
# Extra Debian packages that are needed in the webimage can be added here
# dbimage_extra_packages: [telnet,netcat]
......
# Read about configuration, here:
# https://craftcms.com/docs/4.x/config/
# The application ID used to to uniquely store session and cache data, mutex locks, and more
CRAFT_APP_ID=CraftCMS--21e7b9f1-5c74-4b9f-b281-19ab76ee5581
# The environment Craft is currently running in (dev, staging, production, etc.)
CRAFT_ENVIRONMENT=dev
# The secure key Craft will use for hashing and encrypting data
CRAFT_SECURITY_KEY=wplt9RoayVqpSsEY13yZ1KRAE6UuqWkb
# Database connection settings
CRAFT_DB_DRIVER="mysql"
CRAFT_DB_SERVER="db"
CRAFT_DB_PORT="3306"
CRAFT_DB_DATABASE="db"
CRAFT_DB_USER="db"
CRAFT_DB_PASSWORD="db"
CRAFT_DB_SCHEMA=public
CRAFT_DB_TABLE_PREFIX=
# General settings (see config/general.php)
DEV_MODE=true
ALLOW_ADMIN_CHANGES=true
DISALLOW_ROBOTS=true
MAILPIT_SMTP_PORT="1025"
CRAFT_WEB_URL="https://ved.ddev.site"
PRIMARY_SITE_URL="https://ved.ddev.site"
MAILPIT_SMTP_HOSTNAME="127.0.0.1"
CRAFT_WEB_ROOT="/var/www/html/web"
# Read about configuration, here:
# https://craftcms.com/docs/4.x/config/
# https://craftcms.com/docs/5.x/configure.html
# The application ID used to to uniquely store session and cache data, mutex locks, and more
CRAFT_APP_ID=
......@@ -7,9 +7,6 @@ CRAFT_APP_ID=
# The environment Craft is currently running in (dev, staging, production, etc.)
CRAFT_ENVIRONMENT=dev
# The secure key Craft will use for hashing and encrypting data
CRAFT_SECURITY_KEY=
# Database connection settings
CRAFT_DB_DRIVER=mysql
CRAFT_DB_SERVER=127.0.0.1
......@@ -20,7 +17,8 @@ CRAFT_DB_PASSWORD=
CRAFT_DB_SCHEMA=public
CRAFT_DB_TABLE_PREFIX=
# General settings (see config/general.php)
DEV_MODE=true
ALLOW_ADMIN_CHANGES=true
DISALLOW_ROBOTS=true
# General settings
CRAFT_SECURITY_KEY=
CRAFT_DEV_MODE=true
CRAFT_ALLOW_ADMIN_CHANGES=true
CRAFT_DISALLOW_ROBOTS=true
# Read about configuration, here:
# https://craftcms.com/docs/4.x/config/
# https://craftcms.com/docs/5.x/configure.html
# The application ID used to to uniquely store session and cache data, mutex locks, and more
CRAFT_APP_ID=
......@@ -7,9 +7,6 @@ CRAFT_APP_ID=
# The environment Craft is currently running in (dev, staging, production, etc.)
CRAFT_ENVIRONMENT=production
# The secure key Craft will use for hashing and encrypting data
CRAFT_SECURITY_KEY=
# Database connection settings
CRAFT_DB_DRIVER=mysql
CRAFT_DB_SERVER=127.0.0.1
......@@ -20,7 +17,8 @@ CRAFT_DB_PASSWORD=
CRAFT_DB_SCHEMA=public
CRAFT_DB_TABLE_PREFIX=
# General settings (see config/general.php)
DEV_MODE=false
ALLOW_ADMIN_CHANGES=false
DISALLOW_ROBOTS=false
# General settings
CRAFT_SECURITY_KEY=
CRAFT_DEV_MODE=false
CRAFT_ALLOW_ADMIN_CHANGES=false
CRAFT_DISALLOW_ROBOTS=false
# Read about configuration, here:
# https://craftcms.com/docs/4.x/config/
# https://craftcms.com/docs/5.x/configure.html
# The application ID used to to uniquely store session and cache data, mutex locks, and more
CRAFT_APP_ID=
......@@ -7,33 +7,18 @@ CRAFT_APP_ID=
# The environment Craft is currently running in (dev, staging, production, etc.)
CRAFT_ENVIRONMENT=staging
# The secure key Craft will use for hashing and encrypting data
CRAFT_SECURITY_KEY=
# Database connection settings
CRAFT_DB_DRIVER=mysql
CRAFT_DB_SERVER=ved-db
CRAFT_DB_SERVER=127.0.0.1
CRAFT_DB_PORT=3306
CRAFT_DB_DATABASE=ved
CRAFT_DB_USER=vedUser
CRAFT_DB_PASSWORD=aGWfj4jyIE
CRAFT_DB_DATABASE=
CRAFT_DB_USER=root
CRAFT_DB_PASSWORD=
CRAFT_DB_SCHEMA=public
CRAFT_DB_TABLE_PREFIX=
# General settings (see config/general.php)
DEV_MODE=false
ALLOW_ADMIN_CHANGES=false
DISALLOW_ROBOTS=true
# General settings (see config/general.php)
DEV_MODE=true
ALLOW_ADMIN_CHANGES=true
DISALLOW_ROBOTS=true
MAILPIT_SMTP_PORT="1025"
CRAFT_WEB_URL="https://ved.ddev.site"
PRIMARY_SITE_URL="https://ved.ddev.site"
MAILPIT_SMTP_HOSTNAME="127.0.0.1"
CRAFT_WEB_ROOT="/var/www/html/web"
COOKIE_VALIDATION_KEY="alsdkjladjl"
SECURITY_KEY="asdfjalsdfj"
\ No newline at end of file
# General settings
CRAFT_SECURITY_KEY=
CRAFT_DEV_MODE=false
CRAFT_ALLOW_ADMIN_CHANGES=false
CRAFT_DISALLOW_ROBOTS=true
{
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"craftcms/cms": "^4.4.0",
"craftcms/redactor": "3.0.4",
"doublesecretagency/craft-siteswitcher": "2.3.0",
"verbb/super-table": "3.0.12",
"craftcms/cms": "^5.0.0",
"craftcms/redactor": "4.1.0",
"doublesecretagency/craft-siteswitcher": "3.0.0",
"verbb/super-table": "4.0.1",
"vlucas/phpdotenv": "^5.4.0"
},
"require-dev": {
"craftcms/generator": "^1.3.0",
"craftcms/generator": "^2.0.0",
"yiisoft/yii2-shell": "^2.0.3"
},
"autoload": {
......@@ -23,7 +25,7 @@
"sort-packages": true,
"optimize-autoloader": true,
"platform": {
"php": "8.0.2"
"php": "8.2"
}
},
"scripts": {
......
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -16,14 +16,8 @@ return GeneralConfig::create()
->defaultWeekStartDay(1)
// Prevent generated URLs from including "index.php"
->omitScriptNameInUrls()
// Enable Dev Mode (see https://craftcms.com/guides/what-dev-mode-does)
->devMode(App::env('DEV_MODE') ?? false)
// Preload Single entries as Twig variables
->preloadSingles()
// Allow administrative changes
->allowAdminChanges(App::env('ALLOW_ADMIN_CHANGES') ?? false)
// Disallow robots
->disallowRobots(App::env('DISALLOW_ROBOTS') ?? false)
// Prevent user enumeration attacks
->preventUserEnumeration()
// Set the @webroot alias so the clear-caches command knows where to find CP resources
......
temp
\ No newline at end of file
4Q107/^U5O50^L=!/%3=1YH=DJ4OT40%3PRMSJJ3TS+9OR8Y6+
4NPZ*7UTO3#HL3G$6$/9K221MAAPQPS7VK7A^=RKTJMV29Z0K1
P&M$QV#Z#4=FVE+PC50/Y3AQ7/DL$^PJSZ/JWGEXBWU82EPX3C
%+DAC2ST=ZLYR%QHH/C=41PA&QN#ZL36!HET^N^^9DIE=2GD#R
JEL8NL=$OVK6PL=WU6XRHN=N2=!H8KJIS+$+P&NFTV62PY89B0
fieldLayouts:
60672ab2-5a9f-43d9-af80-3e309033bbcb:
tabs:
-
elementCondition: null
elements:
-
autocapitalize: true
autocomplete: false
autocorrect: true
class: null
disabled: false
elementCondition: null
id: null
instructions: null
label: null
max: null
min: null
name: null
orientation: null
placeholder: null
readonly: false
requirable: false
size: null
step: null
tip: null
title: null
type: craft\fieldlayoutelements\entries\EntryTitleField
uid: bc050da8-a1f4-4332-8b18-3d9c033263b5
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: 486c1fd0-59d3-4e75-8949-264812aa6391 # Href
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: fcc7bfc7-47bc-4112-9fdf-45bfa748022a
userCondition: null
warning: null
width: 100
name: Content
uid: 357504b5-f6a8-4720-9a8e-604b3d683d28
userCondition: null
handle: default
hasTitleField: true
name: Default
section: a4f1b731-f97d-4920-8033-13ed068d7cdf # Nav
showStatusField: true
slugTranslationKeyFormat: null
slugTranslationMethod: site
sortOrder: 1
titleFormat: null
titleTranslationKeyFormat: null
titleTranslationMethod: site
fieldLayouts:
595333b0-e6a8-4ab9-96c0-514bf45d3240:
tabs:
-
elementCondition: null
elements:
-
autocapitalize: true
autocomplete: false
autocorrect: true
class: null
disabled: false
elementCondition: null
id: null
instructions: null
label: null
max: null
min: null
name: null
orientation: null
placeholder: null
readonly: false
requirable: false
size: null
step: null
tip: null
title: null
type: craft\fieldlayoutelements\entries\EntryTitleField
uid: 43f1e9d5-48d6-4098-81ab-5debdd8e1e9f
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: f49ee3ef-7623-4f86-9e96-194ac32b7b25 # Images
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: 53e1fc61-caf7-4a55-8db3-5056218d1894
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: 2f276d6c-86ef-467a-af14-2374b73b69f3 # Rich text
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: 2a5e7d8f-90cc-43de-abf9-0f098c550186
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: 5a9a170c-9780-4162-ab56-dbf793656257 # Short Description
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: c0d57e2e-015f-43c3-93fa-805e7fc89633
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: 6a8f437c-f040-4357-9376-d06d779f4b9d # Current Status
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: 28252ebb-6f89-49b2-a914-5e97fd48231b
userCondition: null
warning: null
width: 100
name: Content
uid: 51ecf41e-744c-4f6a-a6ac-633782e56280
userCondition: null
handle: default
hasTitleField: true
name: Default
section: 2bc4df95-41a1-4200-b353-96b8a3327b7c # Projects
showStatusField: true
slugTranslationKeyFormat: null
slugTranslationMethod: site
sortOrder: 1
titleFormat: null
titleTranslationKeyFormat: null
titleTranslationMethod: site
fieldLayouts:
c3e4c354-e556-43f9-9c17-0fd20b5f6b54:
tabs:
-
elementCondition: null
elements:
-
elementCondition: null
heading: ''
type: craft\fieldlayoutelements\Heading
uid: e283d995-d03d-4c77-83c8-67b827ba2097
userCondition: null
-
autocapitalize: true
autocomplete: false
autocorrect: true
class: null
disabled: false
elementCondition: null
id: null
instructions: null
label: null
max: null
min: null
name: null
orientation: null
placeholder: null
readonly: false
requirable: false
size: null
step: null
tip: null
title: null
type: craft\fieldlayoutelements\entries\EntryTitleField
uid: 1e99eac8-e789-4c3a-86e3-e20f0e6a7676
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: 2e014bcb-5ee8-48d0-9e8c-33a881bda8f4 # Elements
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: 485af40b-e697-4169-b349-cc669c70764c
userCondition: null
warning: null
width: 100
name: Content
uid: f618e1b4-4e7a-47c0-8569-d29e3a651db4
userCondition: null
handle: home
hasTitleField: false
name: Home
section: 274f2409-7af1-4e0f-8332-b8787dbb8dbf # Home
showStatusField: true
slugTranslationKeyFormat: null
slugTranslationMethod: site
sortOrder: 1
titleFormat: '{section.name|raw}'
titleTranslationKeyFormat: null
titleTranslationMethod: site
fieldLayouts:
4a191cf5-ee27-4e23-97e5-aace4c8f7b42:
tabs:
-
elementCondition: null
elements:
-
autocapitalize: true
autocomplete: false
autocorrect: true
class: null
disabled: false
elementCondition: null
id: null
instructions: null
label: null
max: null
min: null
name: null
orientation: null
placeholder: null
readonly: false
requirable: false
size: null
step: null
tip: null
title: null
type: craft\fieldlayoutelements\entries\EntryTitleField
uid: d896b775-e94d-4f7e-ad64-1b6f046ed66b
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: 2e014bcb-5ee8-48d0-9e8c-33a881bda8f4 # Elements
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: 6b5a0152-a27b-4143-a073-bf5be5b81aa5
userCondition: null
warning: null
width: 100
name: Inhalt
uid: bce90d96-0f2b-4d77-be9b-eb3ed4fea7e8
userCondition: null
handle: impressum
hasTitleField: false
name: Impressum
section: 42532bd7-0e69-4993-98d9-a64bb02aa1d9 # Impressum
showStatusField: true
slugTranslationKeyFormat: null
slugTranslationMethod: site
sortOrder: 1
titleFormat: '{section.name|raw}'
titleTranslationKeyFormat: null
titleTranslationMethod: site
columnSuffix: gwvauijn
contentColumnType: text
fieldGroup: b8422f00-5252-4da9-b455-95d5ac4235af # Global
handle: address
instructions: null
name: Address
searchable: false
settings:
availableTransforms: ''
availableVolumes: '*'
columnType: text
configSelectionMode: choose
defaultTransform: ''
manualConfig: ''
purifierConfig: null
purifyHtml: true
redactorConfig: null
removeEmptyTags: false
removeInlineStyles: false
removeNbsp: false
showHtmlButtonForNonAdmins: true
showUnpermittedFiles: false
showUnpermittedVolumes: false
uiMode: enlarged
translationKeyFormat: null
translationMethod: none
type: craft\redactor\Field
columnSuffix: jptyhjsp
contentColumnType: text
fieldGroup: b8422f00-5252-4da9-b455-95d5ac4235af # Global
handle: companyRegisterNumber
instructions: null
name: 'Company Register Number'
searchable: false
settings:
availableTransforms: ''
availableVolumes: '*'
columnType: text
configSelectionMode: choose
defaultTransform: ''
manualConfig: ''
purifierConfig: null
purifyHtml: true
redactorConfig: null
removeEmptyTags: false
removeInlineStyles: false
removeNbsp: false
showHtmlButtonForNonAdmins: true
showUnpermittedFiles: false
showUnpermittedVolumes: false
uiMode: enlarged
translationKeyFormat: null
translationMethod: none
type: craft\redactor\Field
columnSuffix: null
contentColumnType: string
fieldGroup: b6fcef38-d001-4b61-9d45-a1a088df18ba # Channel Types
handle: images
instructions: null
name: Images
searchable: false
settings:
allowSelfRelations: false
allowSubfolders: false
allowUploads: true
allowedKinds: null
branchLimit: null
defaultUploadLocationSource: 'volume:8867d79b-6217-4d46-bcea-0a137dc84bb6' # assets
defaultUploadLocationSubpath: null
localizeRelations: false
maintainHierarchy: false
maxRelations: null
minRelations: null
previewMode: full
restrictFiles: false
restrictLocation: false
restrictedDefaultUploadSubpath: null
restrictedLocationSource: 'volume:8867d79b-6217-4d46-bcea-0a137dc84bb6' # assets
restrictedLocationSubpath: null
selectionCondition:
__assoc__:
-
- elementType
- craft\elements\Asset
-
- fieldContext
- global
-
- class
- craft\elements\conditions\assets\AssetCondition
selectionLabel: null
showSiteMenu: true
showUnpermittedFiles: false
showUnpermittedVolumes: false
sources:
- 'volume:8867d79b-6217-4d46-bcea-0a137dc84bb6' # assets
targetSiteId: null
validateRelatedElements: false
viewMode: list
translationKeyFormat: null
translationMethod: site
type: craft\fields\Assets
columnSuffix: null
contentColumnType: string
fieldGroup: c34bc9d5-1143-432f-b2e9-be04e0f33194 # Common
handle: navigation
instructions: null
name: Navigation
searchable: false
settings:
allowSelfRelations: false
branchLimit: null
localizeRelations: false
maintainHierarchy: false
maxRelations: null
minRelations: null
selectionCondition:
__assoc__:
-
- elementType
- craft\elements\Entry
-
- fieldContext
- global
-
- class
- craft\elements\conditions\entries\EntryCondition
selectionLabel: null
showSiteMenu: false
sources: '*'
targetSiteId: null
validateRelatedElements: false
viewMode: null
translationKeyFormat: null
translationMethod: site
type: craft\fields\Entries
columnSuffix: mqavplnq
contentColumnType: text
fieldGroup: b6fcef38-d001-4b61-9d45-a1a088df18ba # Channel Types
handle: richText
instructions: null
name: 'Rich text'
searchable: false
settings:
availableTransforms: ''
availableVolumes: '*'
columnType: text
configSelectionMode: choose
defaultTransform: ''
manualConfig: ''
purifierConfig: null
purifyHtml: true
redactorConfig: null
removeEmptyTags: false
removeInlineStyles: false
removeNbsp: false
showHtmlButtonForNonAdmins: true
showUnpermittedFiles: false
showUnpermittedVolumes: false
uiMode: enlarged
translationKeyFormat: null
translationMethod: none
type: craft\redactor\Field
fieldLayouts:
6c968376-4bba-4976-b750-4c2ded13f04a:
tabs:
-
elementCondition: null
elements:
-
elementCondition: null
fieldUid: ed35c68b-5c29-4512-92d6-18bf5283b995 # Logo
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: 85e38ba2-85b0-4399-ae59-113fff7d25cb
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: 33db6c0c-386a-4261-8730-96efed307516 # Address
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: 079e3c0a-9743-48d3-8ec4-5ed84ad4169c
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: 7f4300a5-5dd5-4144-9b87-1ad88188114f # Company Register Number
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: 93c3296a-7b61-4abe-ab97-16e95edb0812
userCondition: null
warning: null
width: 100
name: testTab
uid: cfa66085-bd14-48ea-b002-882a391f6547
userCondition: null
handle: companyInfo
name: 'Company Info'
sortOrder: 1
field: 2e014bcb-5ee8-48d0-9e8c-33a881bda8f4 # Elements
fieldLayouts:
48dd92d6-3209-4ad0-8ba5-9dd0d36c0cac:
tabs:
-
elementCondition: null
elements:
-
elementCondition: null
fieldUid: 0d4e105e-2cdf-4ea0-a1b4-6ca09a9983dd # Headline
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: df1378fd-6edd-45ad-9acb-ea8e2d73b4b3
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: 09f14279-5c24-4955-b2be-439a0ae44c85 # Content Grid
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: b4a4be49-dc94-463c-b7ce-6273ec8ad0f7
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: 9f6f218e-6133-4095-bf95-f37cba729f73 # Max Width Limit
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: b0eaba71-4fc6-45d2-b7cf-48fa1744d205
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: f6c43733-7be4-4646-bcbe-98afacdf796e # Label
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: a6a042c1-7dc8-484a-9258-b00d168d08bf
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: 2a1afa39-32e3-4f1f-8766-488817c00035 # Background Color
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: 8ddad719-d412-4ccd-9623-7fb90f9db3fb
userCondition: null
warning: null
width: 100
name: Content
uid: 50c7a9cf-bcd5-4bc6-86c5-f7ec9bd0f666
userCondition: null
fields:
0d4e105e-2cdf-4ea0-a1b4-6ca09a9983dd: # Headline
columnSuffix: moxqvtlq
contentColumnType: text
fieldGroup: null
handle: headline
instructions: null
name: Headline
searchable: false
settings:
availableTransforms: ''
availableVolumes: '*'
columnType: text
configSelectionMode: choose
defaultTransform: ''
manualConfig: ''
purifierConfig: null
purifyHtml: true
redactorConfig: null
removeEmptyTags: false
removeInlineStyles: false
removeNbsp: false
showHtmlButtonForNonAdmins: true
showUnpermittedFiles: false
showUnpermittedVolumes: false
uiMode: enlarged
translationKeyFormat: null
translationMethod: none
type: craft\redactor\Field
2a1afa39-32e3-4f1f-8766-488817c00035: # Background Color
columnSuffix: fclouqej
contentColumnType: string(9)
fieldGroup: null
handle: backgroundColor
instructions: null
name: 'Background Color'
searchable: false
settings:
columnType: null
options:
-
__assoc__:
-
- label
- 'Light Grey'
-
- value
- lightGrey
-
- default
- '1'
-
__assoc__:
-
- label
- Grey
-
- value
- grey
-
- default
- ''
translationKeyFormat: null
translationMethod: none
type: craft\fields\Dropdown
9f6f218e-6133-4095-bf95-f37cba729f73: # Max Width Limit
columnSuffix: bmehwtnm
contentColumnType: string(13)
fieldGroup: null
handle: maxWidthLimit
instructions: null
name: 'Max Width Limit'
searchable: false
settings:
columnType: null
options:
-
__assoc__:
-
- label
- 'Yes'
-
- value
- maxWidthLimit
-
- default
- ''
-
__assoc__:
-
- label
- 'No'
-
- value
- 'no'
-
- default
- ''
translationKeyFormat: null
translationMethod: none
type: craft\fields\Dropdown
09f14279-5c24-4955-b2be-439a0ae44c85: # Content Grid
columnSuffix: null
contentColumnType: string
fieldGroup: null
handle: contentGrid
instructions: null
name: 'Content Grid'
searchable: false
settings:
blockTypeFields: 0
changedFieldIndicator: 113002105
columns:
__assoc__:
-
- 522ac542-6fdf-42d3-bc0d-09e198bd75f9 # Image
-
__assoc__:
-
- width
- ''
-
- b60b3058-4c56-41a1-a364-795da4447e68 # Text
-
__assoc__:
-
- width
- ''
contentTable: '{{%stc_6_contentgrid}}'
fieldLayout: matrix
maxRows: null
minRows: null
propagationKeyFormat: null
propagationMethod: all
selectionLabel: null
staticField: null
translationKeyFormat: null
translationMethod: none
type: verbb\supertable\fields\SuperTableField
f6c43733-7be4-4646-bcbe-98afacdf796e: # Label
columnSuffix: yrpomtfc
contentColumnType: text
fieldGroup: null
handle: label
instructions: null
name: Label
searchable: false
settings:
byteLimit: null
charLimit: null
code: false
columnType: null
initialRows: 4
multiline: false
placeholder: null
uiMode: normal
translationKeyFormat: null
translationMethod: none
type: craft\fields\PlainText
handle: contentGrid
name: 'Content Grid'
sortOrder: 4
field: 2e014bcb-5ee8-48d0-9e8c-33a881bda8f4 # Elements
fieldLayouts:
fde5a2cb-3886-4843-9ccc-7956fb59d98b:
tabs:
-
elementCondition: null
elements:
-
elementCondition: null
fieldUid: 51182d09-919a-4d4e-a6bd-0f0bc0ecb631 # Image
instructions: null
label: null
required: true
tip: null
type: craft\fieldlayoutelements\CustomField
uid: 85869db1-900b-43da-aaad-e34640b78c2d
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: 195610f8-13df-4d94-8a80-25f88b30f837 # Text
instructions: null
label: null
required: true
tip: null
type: craft\fieldlayoutelements\CustomField
uid: 229f3b1c-de84-46ee-b9e3-5db3c3a7d991
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: d45c9db8-4931-4d1b-9e20-f0f2574904a7 # Grid Layout
instructions: null
label: null
required: true
tip: null
type: craft\fieldlayoutelements\CustomField
uid: e6bc6ae8-1ea1-442e-80ce-9be6558b85ab
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: bd600fbe-5b75-4222-97b8-75c5210b1bb2 # Max Width Limit
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: a79dc1c8-c256-4550-be55-2890de74dac3
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: bdba3344-51c2-4e93-b740-2dfcd2133430 # Headline
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: 80e85874-9ef6-43a4-a66b-6409924cd3ab
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: 01ceb8fd-9fd1-4844-976c-af71522cec3d # Label
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: 868bf6ed-50af-4742-a478-19c04d21af53
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: 5742d887-cd6d-490d-8779-bed71db90e82 # Background Color
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: 6c1d4ec9-d77d-4df0-8b7a-2eecb992e028
userCondition: null
warning: null
width: 100
name: Content
uid: fdb6ce9b-0af6-47c8-8aae-f6ffa95763bb
userCondition: null
fields:
01ceb8fd-9fd1-4844-976c-af71522cec3d: # Label
columnSuffix: nojwtcan
contentColumnType: text
fieldGroup: null
handle: label
instructions: null
name: Label
searchable: false
settings:
byteLimit: null
charLimit: null
code: false
columnType: null
initialRows: 4
multiline: false
placeholder: null
uiMode: normal
translationKeyFormat: null
translationMethod: none
type: craft\fields\PlainText
5742d887-cd6d-490d-8779-bed71db90e82: # Background Color
columnSuffix: wjdxcytb
contentColumnType: string(9)
fieldGroup: null
handle: backgroundColor
instructions: null
name: 'Background Color'
searchable: false
settings:
columnType: null
options:
-
__assoc__:
-
- label
- 'Light Grey'
-
- value
- lightGrey
-
- default
- '1'
-
__assoc__:
-
- label
- Grey
-
- value
- grey
-
- default
- ''
translationKeyFormat: null
translationMethod: none
type: craft\fields\Dropdown
51182d09-919a-4d4e-a6bd-0f0bc0ecb631: # Image
columnSuffix: null
contentColumnType: string
fieldGroup: null
handle: image
instructions: null
name: Image
searchable: false
settings:
allowSelfRelations: false
allowSubfolders: false
allowUploads: true
allowedKinds:
- image
branchLimit: null
defaultUploadLocationSource: 'volume:8867d79b-6217-4d46-bcea-0a137dc84bb6' # assets
defaultUploadLocationSubpath: null
localizeRelations: false
maintainHierarchy: false
maxRelations: null
minRelations: null
previewMode: full
restrictFiles: true
restrictLocation: false
restrictedDefaultUploadSubpath: null
restrictedLocationSource: 'volume:8867d79b-6217-4d46-bcea-0a137dc84bb6' # assets
restrictedLocationSubpath: null
selectionCondition:
__assoc__:
-
- elementType
- craft\elements\Asset
-
- fieldContext
- global
-
- class
- craft\elements\conditions\assets\AssetCondition
selectionLabel: null
showSiteMenu: true
showUnpermittedFiles: false
showUnpermittedVolumes: false
sources: '*'
targetSiteId: null
validateRelatedElements: false
viewMode: list
translationKeyFormat: null
translationMethod: site
type: craft\fields\Assets
195610f8-13df-4d94-8a80-25f88b30f837: # Text
columnSuffix: qotektdf
contentColumnType: text
fieldGroup: null
handle: text
instructions: null
name: Text
searchable: false
settings:
availableTransforms: ''
availableVolumes: '*'
columnType: text
configSelectionMode: choose
defaultTransform: ''
manualConfig: ''
purifierConfig: null
purifyHtml: true
redactorConfig: null
removeEmptyTags: false
removeInlineStyles: false
removeNbsp: false
showHtmlButtonForNonAdmins: true
showUnpermittedFiles: false
showUnpermittedVolumes: false
uiMode: enlarged
translationKeyFormat: null
translationMethod: none
type: craft\redactor\Field
bd600fbe-5b75-4222-97b8-75c5210b1bb2: # Max Width Limit
columnSuffix: yqedembr
contentColumnType: string(13)
fieldGroup: null
handle: maxWidthLimit
instructions: null
name: 'Max Width Limit'
searchable: false
settings:
columnType: null
options:
-
__assoc__:
-
- label
- 'Yes'
-
- value
- maxWidthLimit
-
- default
- '1'
-
__assoc__:
-
- label
- 'No'
-
- value
- 'no'
-
- default
- ''
translationKeyFormat: null
translationMethod: none
type: craft\fields\Dropdown
bdba3344-51c2-4e93-b740-2dfcd2133430: # Headline
columnSuffix: jbmfzwdi
contentColumnType: text
fieldGroup: null
handle: headline
instructions: null
name: Headline
searchable: false
settings:
availableTransforms: ''
availableVolumes: '*'
columnType: text
configSelectionMode: choose
defaultTransform: ''
manualConfig: ''
purifierConfig: null
purifyHtml: true
redactorConfig: null
removeEmptyTags: false
removeInlineStyles: false
removeNbsp: false
showHtmlButtonForNonAdmins: true
showUnpermittedFiles: false
showUnpermittedVolumes: false
uiMode: enlarged
translationKeyFormat: null
translationMethod: none
type: craft\redactor\Field
d45c9db8-4931-4d1b-9e20-f0f2574904a7: # Grid Layout
columnSuffix: imrmyiik
contentColumnType: string(4)
fieldGroup: null
handle: gridLayout
instructions: null
name: 'Grid Layout'
searchable: false
settings:
columnType: null
options:
-
__assoc__:
-
- label
- '50% 50%'
-
- value
- '5050'
-
- default
- '1'
-
__assoc__:
-
- label
- '20% 80%'
-
- value
- '2080'
-
- default
- ''
translationKeyFormat: null
translationMethod: none
type: craft\fields\RadioButtons
handle: imageAndText
name: 'Image And Text'
sortOrder: 2
field: 2e014bcb-5ee8-48d0-9e8c-33a881bda8f4 # Elements
fieldLayouts:
b1c7b438-613c-4906-a0a6-050def78885c:
tabs:
-
elementCondition: null
elements:
-
elementCondition: null
fieldUid: dc100381-7900-4977-9cb9-ca826016ec02 # Max Width Limit
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: fbbd8ed1-194a-4630-8c0e-02f22dbecfb6
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: 7aa20c43-822b-4a4d-937e-e91605bdbb97 # Label
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: b879c1de-4b73-4e73-bca7-f66621140e12
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: 0a3f98b5-f071-4d31-8e94-7635d5ac5711 # Background Color
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: 480c354b-c278-4573-9d64-65b39e6d7053
userCondition: null
warning: null
width: 100
name: Content
uid: 284e5bef-631a-42c5-8444-920e64048fb8
userCondition: null
fields:
0a3f98b5-f071-4d31-8e94-7635d5ac5711: # Background Color
columnSuffix: ciqpgwaj
contentColumnType: string(9)
fieldGroup: null
handle: backgroundColor
instructions: null
name: 'Background Color'
searchable: false
settings:
columnType: null
options:
-
__assoc__:
-
- label
- 'Light Grey'
-
- value
- lightGrey
-
- default
- '1'
-
__assoc__:
-
- label
- Grey
-
- value
- grey
-
- default
- ''
translationKeyFormat: null
translationMethod: none
type: craft\fields\Dropdown
7aa20c43-822b-4a4d-937e-e91605bdbb97: # Label
columnSuffix: hbkllnnc
contentColumnType: text
fieldGroup: null
handle: label
instructions: null
name: Label
searchable: false
settings:
byteLimit: null
charLimit: null
code: false
columnType: null
initialRows: 4
multiline: false
placeholder: null
uiMode: normal
translationKeyFormat: null
translationMethod: none
type: craft\fields\PlainText
dc100381-7900-4977-9cb9-ca826016ec02: # Max Width Limit
columnSuffix: hqahciqg
contentColumnType: string(13)
fieldGroup: null
handle: maxWidthLimit
instructions: null
name: 'Max Width Limit'
searchable: false
settings:
columnType: null
options:
-
__assoc__:
-
- label
- 'Yes'
-
- value
- maxWidthLimit
-
- default
- '1'
-
__assoc__:
-
- label
- 'No'
-
- value
- 'no'
-
- default
- ''
translationKeyFormat: null
translationMethod: none
type: craft\fields\Dropdown
handle: news
name: News
sortOrder: 5
field: 2e014bcb-5ee8-48d0-9e8c-33a881bda8f4 # Elements
fieldLayouts:
b4c1fba8-ff38-4298-81a0-c0d0134b50aa:
tabs:
-
elementCondition: null
elements:
-
elementCondition: null
fieldUid: 566ae2e9-84c0-413c-bc03-82ce2903658d # Max Width Limit
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: cafd60db-54d4-49e2-880c-2ac706eea17a
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: 7b1be846-f335-4b1f-b5eb-7aebf5e47751 # Label
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: 0a02234e-e6d7-4514-b155-83f68f76adb5
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: e4c6a38f-e4c3-45fa-b751-b3199bf5b2a7 # Background Color
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: c0e39927-c6d4-4be7-b0c6-67e5273f2daa
userCondition: null
warning: null
width: 100
name: Content
uid: e4426e9f-6376-4e19-8cba-e7c3895da485
userCondition: null
fields:
7b1be846-f335-4b1f-b5eb-7aebf5e47751: # Label
columnSuffix: qarsoham
contentColumnType: text
fieldGroup: null
handle: label
instructions: null
name: Label
searchable: false
settings:
byteLimit: null
charLimit: null
code: false
columnType: null
initialRows: 4
multiline: false
placeholder: null
uiMode: normal
translationKeyFormat: null
translationMethod: none
type: craft\fields\PlainText
566ae2e9-84c0-413c-bc03-82ce2903658d: # Max Width Limit
columnSuffix: agjthzyh
contentColumnType: string(13)
fieldGroup: null
handle: maxWidthLimit
instructions: null
name: 'Max Width Limit'
searchable: false
settings:
columnType: null
options:
-
__assoc__:
-
- label
- 'Yes'
-
- value
- maxWidthLimit
-
- default
- '1'
-
__assoc__:
-
- label
- 'No'
-
- value
- 'no'
-
- default
- ''
translationKeyFormat: null
translationMethod: none
type: craft\fields\Dropdown
e4c6a38f-e4c3-45fa-b751-b3199bf5b2a7: # Background Color
columnSuffix: lgpkogmh
contentColumnType: string(9)
fieldGroup: null
handle: backgroundColor
instructions: null
name: 'Background Color'
searchable: false
settings:
columnType: null
options:
-
__assoc__:
-
- label
- 'Light Grey'
-
- value
- lightGrey
-
- default
- '1'
-
__assoc__:
-
- label
- Grey
-
- value
- grey
-
- default
- ''
translationKeyFormat: null
translationMethod: none
type: craft\fields\Dropdown
handle: projects
name: Projects
sortOrder: 6
field: 2e014bcb-5ee8-48d0-9e8c-33a881bda8f4 # Elements
fieldLayouts:
0f8f115f-3839-4ea0-9dd4-16b5f6e72fc2:
tabs:
-
elementCondition: null
elements:
-
elementCondition: null
fieldUid: 88511bdb-a301-42e1-a34e-9e94961cdf23 # Slider
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: d443acd7-5943-44b5-9f10-eb24f369b65c
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: 594a2aa6-6d44-4bee-91c4-0d24c5bdb3bb # maxWidthLimit
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: 48e053c5-7055-4857-807c-cc0255220efa
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: 0e0fa14c-6984-4cad-b340-1646f92c60f9 # Label
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: 5b30f037-88bb-471f-86ec-f45c64288d61
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: 8ca8b2b9-c18c-43ae-8fda-4da2a908ebf1 # Background Color
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: 66e3268d-a0fd-4c8b-bc1e-19651c1be020
userCondition: null
warning: null
width: 100
name: Content
uid: 83c65610-32d9-4018-b708-6b9a851152d9
userCondition: null
fields:
0e0fa14c-6984-4cad-b340-1646f92c60f9: # Label
columnSuffix: aiizbxrd
contentColumnType: text
fieldGroup: null
handle: label
instructions: null
name: Label
searchable: false
settings:
byteLimit: null
charLimit: null
code: false
columnType: null
initialRows: 4
multiline: false
placeholder: null
uiMode: normal
translationKeyFormat: null
translationMethod: none
type: craft\fields\PlainText
8ca8b2b9-c18c-43ae-8fda-4da2a908ebf1: # Background Color
columnSuffix: bucxvcbi
contentColumnType: string(9)
fieldGroup: null
handle: backgroundColor
instructions: null
name: 'Background Color'
searchable: false
settings:
columnType: null
options:
-
__assoc__:
-
- label
- 'Light Grey'
-
- value
- lightGrey
-
- default
- ''
-
__assoc__:
-
- label
- Grey
-
- value
- grey
-
- default
- '1'
translationKeyFormat: null
translationMethod: none
type: craft\fields\Dropdown
594a2aa6-6d44-4bee-91c4-0d24c5bdb3bb: # maxWidthLimit
columnSuffix: wgzynxoy
contentColumnType: string(13)
fieldGroup: null
handle: maxWidthLimit
instructions: null
name: maxWidthLimit
searchable: false
settings:
columnType: null
options:
-
__assoc__:
-
- label
- 'Yes'
-
- value
- maxWidthLimit
-
- default
- '1'
-
__assoc__:
-
- label
- 'No'
-
- value
- 'no'
-
- default
- ''
translationKeyFormat: null
translationMethod: none
type: craft\fields\Dropdown
88511bdb-a301-42e1-a34e-9e94961cdf23: # Slider
columnSuffix: null
contentColumnType: string
fieldGroup: null
handle: slider
instructions: null
name: Slider
searchable: false
settings:
blockTypeFields: 0
changedFieldIndicator: 349259992
columns:
__assoc__:
-
- e0b78a0d-f1f4-4ddb-bc91-055f2aac35eb # Text
-
__assoc__:
-
- width
- ''
-
- 80442797-395a-4aff-a605-589d241acabe # Image
-
__assoc__:
-
- width
- ''
contentTable: '{{%stc_5_slider}}'
fieldLayout: matrix
maxRows: null
minRows: null
propagationKeyFormat: null
propagationMethod: all
selectionLabel: null
staticField: null
translationKeyFormat: null
translationMethod: none
type: verbb\supertable\fields\SuperTableField
handle: slider
name: Slider
sortOrder: 3
field: 2e014bcb-5ee8-48d0-9e8c-33a881bda8f4 # Elements
fieldLayouts:
57b65e42-a52b-465e-81a2-a31e5dec6c19:
tabs:
-
elementCondition: null
elements:
-
elementCondition: null
fieldUid: 36798ac9-366e-41f9-b0b1-19fd0b3a0867 # Text
instructions: null
label: null
required: true
tip: null
type: craft\fieldlayoutelements\CustomField
uid: 431b94df-0fa9-4b3b-afcb-18e8c3a23802
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: 9a71e69a-bccf-4fba-a743-e3d846202492 # Max Width Limit
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: 18938066-97a5-4d17-bdc7-ebbe3f130717
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: 6e5fc1fa-0743-4b7f-aa15-b51445b4f5fa # Label
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: 1f848471-bcf5-4295-9470-513703150c8b
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: 1e0bf02f-b552-4843-87cd-1eb00d803ecf # Background Color
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: 02efbd42-df7f-4f79-966d-13dc0ea4fb75
userCondition: null
warning: null
width: 100
name: Content
uid: 8befcb96-8e5e-4996-abda-bc82eefef667
userCondition: null
fields:
1e0bf02f-b552-4843-87cd-1eb00d803ecf: # Background Color
columnSuffix: osugmrdi
contentColumnType: string(9)
fieldGroup: null
handle: backgroundColor
instructions: null
name: 'Background Color'
searchable: false
settings:
columnType: null
options:
-
__assoc__:
-
- label
- 'Light Grey'
-
- value
- lightGrey
-
- default
- '1'
-
__assoc__:
-
- label
- Grey
-
- value
- grey
-
- default
- ''
translationKeyFormat: null
translationMethod: none
type: craft\fields\Dropdown
6e5fc1fa-0743-4b7f-aa15-b51445b4f5fa: # Label
columnSuffix: zlggidef
contentColumnType: text
fieldGroup: null
handle: label
instructions: null
name: Label
searchable: false
settings:
byteLimit: null
charLimit: null
code: false
columnType: null
initialRows: 4
multiline: false
placeholder: null
uiMode: normal
translationKeyFormat: null
translationMethod: none
type: craft\fields\PlainText
9a71e69a-bccf-4fba-a743-e3d846202492: # Max Width Limit
columnSuffix: imvtadvs
contentColumnType: string(13)
fieldGroup: null
handle: maxWidthLimit
instructions: null
name: 'Max Width Limit'
searchable: false
settings:
columnType: null
options:
-
__assoc__:
-
- label
- 'Yes'
-
- value
- maxWidthLimit
-
- default
- '1'
-
__assoc__:
-
- label
- 'No'
-
- value
- ''
-
- default
- ''
translationKeyFormat: null
translationMethod: none
type: craft\fields\Dropdown
36798ac9-366e-41f9-b0b1-19fd0b3a0867: # Text
columnSuffix: mupxlzcc
contentColumnType: text
fieldGroup: null
handle: text
instructions: null
name: Text
searchable: false
settings:
availableTransforms: ''
availableVolumes: '*'
columnType: text
configSelectionMode: choose
defaultTransform: ''
manualConfig: ''
purifierConfig: null
purifyHtml: true
redactorConfig: null
removeEmptyTags: false
removeInlineStyles: false
removeNbsp: false
showHtmlButtonForNonAdmins: true
showUnpermittedFiles: false
showUnpermittedVolumes: false
uiMode: enlarged
translationKeyFormat: null
translationMethod: none
type: craft\redactor\Field
handle: text
name: Text
sortOrder: 1
dateModified: 1701332238
elementSources:
craft\elements\Asset:
-
defaultSort:
- dateCreated
- desc
disabled: false
key: 'volume:8867d79b-6217-4d46-bcea-0a137dc84bb6' # assets
tableAttributes:
- filename
- size
- dateModified
- link
type: native
-
defaultSort:
- dateCreated
- desc
disabled: false
key: 'folder:3f6a66d5-7fa3-4bb7-bf6d-a1bccb7389c5'
tableAttributes:
- filename
- size
- dateModified
- link
type: native
-
heading: images
type: heading
email:
fromEmail: michael.apfelthaler@hebotek.at
fromName: ved.at
transportType: craft\mail\transportadapters\Sendmail
fs:
assets:
hasUrls: true
name: assets
settings:
path: assets
type: craft\fs\Local
url: assets
meta:
__names__:
0a3f98b5-f071-4d31-8e94-7635d5ac5711: 'Background Color' # Background Color
0d4e105e-2cdf-4ea0-a1b4-6ca09a9983dd: Headline # Headline
0e0fa14c-6984-4cad-b340-1646f92c60f9: Label # Label
01ceb8fd-9fd1-4844-976c-af71522cec3d: Label # Label
1e0bf02f-b552-4843-87cd-1eb00d803ecf: 'Background Color' # Background Color
2a1afa39-32e3-4f1f-8766-488817c00035: 'Background Color' # Background Color
2bc4df95-41a1-4200-b353-96b8a3327b7c: Projects # Projects
2e014bcb-5ee8-48d0-9e8c-33a881bda8f4: Elements # Elements
2f276d6c-86ef-467a-af14-2374b73b69f3: 'Rich text' # Rich text
5a9a170c-9780-4162-ab56-dbf793656257: 'Short Description' # Short Description
6a8f437c-f040-4357-9376-d06d779f4b9d: 'Current Status' # Current Status
6e5fc1fa-0743-4b7f-aa15-b51445b4f5fa: Label # Label
7aa20c43-822b-4a4d-937e-e91605bdbb97: Label # Label
7b1be846-f335-4b1f-b5eb-7aebf5e47751: Label # Label
7f4300a5-5dd5-4144-9b87-1ad88188114f: 'Company Register Number' # Company Register Number
8ade1e09-014f-4414-8354-936e3a3516eb: News # News
8ca8b2b9-c18c-43ae-8fda-4da2a908ebf1: 'Background Color' # Background Color
8d8f99c1-6d5c-444d-b2be-536748581180: 'Company Info' # Company Info
9a71e69a-bccf-4fba-a743-e3d846202492: 'Max Width Limit' # Max Width Limit
9bdf424f-e0e6-45d7-9e84-f12bb23210e6: Slider # Slider
9f6f218e-6133-4095-bf95-f37cba729f73: 'Max Width Limit' # Max Width Limit
09f14279-5c24-4955-b2be-439a0ae44c85: 'Content Grid' # Content Grid
33db6c0c-386a-4261-8730-96efed307516: Address # Address
39e3c841-c1e1-4650-ae19-b19ce6b234ff: Default # Default
39e79cd4-9bd8-4883-ada1-f4d648486fe2: 'Image And Text' # Image And Text
47af23ae-71fc-4e71-b6be-59db26789d35: News # News
47b72803-61d7-42f3-adce-a1fcb3ee1115: Projects # Projects
60dfd06d-f94f-4bcb-80a8-679d67062547: ved.at # ved.at
103cae2d-2d7d-43dd-b563-92b6ad45e7c4: Text # Text
274f2409-7af1-4e0f-8332-b8787dbb8dbf: Home # Home
379d162c-5979-483a-9582-29dc715f1932: ved.at # ved.at
486c1fd0-59d3-4e75-8949-264812aa6391: Href # Href
522ac542-6fdf-42d3-bc0d-09e198bd75f9: Image # Image
566ae2e9-84c0-413c-bc03-82ce2903658d: 'Max Width Limit' # Max Width Limit
594a2aa6-6d44-4bee-91c4-0d24c5bdb3bb: maxWidthLimit # maxWidthLimit
2501fb2c-2c71-43b6-93b0-b0b8ce8aff7d: 'Public Schema' # Public Schema
5742d887-cd6d-490d-8779-bed71db90e82: 'Background Color' # Background Color
8867d79b-6217-4d46-bcea-0a137dc84bb6: assets # assets
36798ac9-366e-41f9-b0b1-19fd0b3a0867: Text # Text
42532bd7-0e69-4993-98d9-a64bb02aa1d9: Impressum # Impressum
51182d09-919a-4d4e-a6bd-0f0bc0ecb631: Image # Image
80912b23-8107-4aaa-b423-054bb77022eb: Default # Default
88511bdb-a301-42e1-a34e-9e94961cdf23: Slider # Slider
92482c78-dfe2-44a0-955d-48132526b61f: Navigation # Navigation
195610f8-13df-4d94-8a80-25f88b30f837: Text # Text
536982f7-b3d5-4fa0-8f7d-61b000e3c46a: Default # Default
80442797-395a-4aff-a605-589d241acabe: Image # Image
a4f1b731-f97d-4920-8033-13ed068d7cdf: Nav # Nav
b6fcef38-d001-4b61-9d45-a1a088df18ba: 'Channel Types' # Channel Types
b60b3058-4c56-41a1-a364-795da4447e68: Text # Text
b8422f00-5252-4da9-b455-95d5ac4235af: Global # Global
b9666ace-985d-4553-97e3-cda91399f3a0: 'Content Grid' # Content Grid
bd600fbe-5b75-4222-97b8-75c5210b1bb2: 'Max Width Limit' # Max Width Limit
bdba3344-51c2-4e93-b740-2dfcd2133430: Headline # Headline
c6c05446-82c5-4f17-a715-6f08244c01f3: Home # Home
c34bc9d5-1143-432f-b2e9-be04e0f33194: Common # Common
d45c9db8-4931-4d1b-9e20-f0f2574904a7: 'Grid Layout' # Grid Layout
dc100381-7900-4977-9cb9-ca826016ec02: 'Max Width Limit' # Max Width Limit
e0b78a0d-f1f4-4ddb-bc91-055f2aac35eb: Text # Text
e4c6a38f-e4c3-45fa-b751-b3199bf5b2a7: 'Background Color' # Background Color
ed35c68b-5c29-4512-92d6-18bf5283b995: Logo # Logo
f6c43733-7be4-4646-bcbe-98afacdf796e: Label # Label
f49ee3ef-7623-4f86-9e96-194ac32b7b25: Images # Images
fc534ca8-0fb4-4296-9a71-bb277a63a784: Impressum # Impressum
plugins:
redactor:
edition: standard
enabled: true
schemaVersion: 2.3.0
super-table:
edition: standard
enabled: true
schemaVersion: 3.0.0
system:
edition: solo
live: true
name: ved.at
schemaVersion: 4.5.3.0
timeZone: America/Los_Angeles
users:
allowPublicRegistration: false
defaultGroup: null
photoSubpath: null
photoVolumeUid: null
requireEmailVerification: true
defaultPlacement: end
enableVersioning: true
handle: home
name: Home
propagationMethod: all
siteSettings:
379d162c-5979-483a-9582-29dc715f1932: # ved.at
enabledByDefault: true
hasUrls: true
template: _singles/home
uriFormat: __home__
type: single
defaultPlacement: end
enableVersioning: true
handle: impressum
name: Impressum
propagationMethod: all
siteSettings:
379d162c-5979-483a-9582-29dc715f1932: # ved.at
enabledByDefault: true
hasUrls: true
template: _singles/subpage.twig
uriFormat: impressum
type: single
defaultPlacement: end
enableVersioning: true
handle: nav
name: Nav
propagationMethod: all
siteSettings:
379d162c-5979-483a-9582-29dc715f1932: # ved.at
enabledByDefault: true
hasUrls: false
template: null
uriFormat: null
structure:
maxLevels: null
uid: 9cd4dde9-faf0-4603-aa6e-9d49bcb1c81b
type: structure
defaultPlacement: end
enableVersioning: true
handle: news
name: News
propagationMethod: all
siteSettings:
379d162c-5979-483a-9582-29dc715f1932: # ved.at
enabledByDefault: true
hasUrls: true
template: news/_entry
uriFormat: 'news/{slug}'
type: channel
defaultPlacement: end
enableVersioning: true
handle: projects
name: Projects
propagationMethod: all
siteSettings:
379d162c-5979-483a-9582-29dc715f1932: # ved.at
enabledByDefault: true
hasUrls: true
template: projects/_entry
uriFormat: 'projects/{slug}'
type: channel
baseUrl: $PRIMARY_SITE_URL
handle: default
hasUrls: true
language: de
name: ved.at
primary: true
siteGroup: 60dfd06d-f94f-4bcb-80a8-679d67062547 # ved.at
sortOrder: 1
changedFieldIndicator: 1718681263
field: 09f14279-5c24-4955-b2be-439a0ae44c85 # Content Grid
fieldLayouts:
85bc6806-50dc-495a-b139-8d9f51eab5e2:
tabs:
-
elementCondition: null
elements:
-
elementCondition: null
fieldUid: 522ac542-6fdf-42d3-bc0d-09e198bd75f9 # Image
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: 993b070b-d50b-4d84-a283-c65b4a8121c6
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: b60b3058-4c56-41a1-a364-795da4447e68 # Text
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: c65f435d-f507-4736-8c32-7f5009c5fc3d
userCondition: null
warning: null
width: 100
name: Content
uid: 9acf22ac-a48f-4cb2-8aff-c2a76e69f723
userCondition: null
fields:
522ac542-6fdf-42d3-bc0d-09e198bd75f9: # Image
columnSuffix: null
contentColumnType: string
fieldGroup: null
handle: image
instructions: null
name: Image
searchable: false
settings:
allowSelfRelations: false
allowSubfolders: false
allowUploads: true
allowedKinds:
- image
branchLimit: null
defaultUploadLocationSource: 'volume:8867d79b-6217-4d46-bcea-0a137dc84bb6' # assets
defaultUploadLocationSubpath: null
localizeRelations: false
maintainHierarchy: false
maxRelations: null
minRelations: null
previewMode: full
restrictFiles: true
restrictLocation: false
restrictedDefaultUploadSubpath: null
restrictedLocationSource: 'volume:8867d79b-6217-4d46-bcea-0a137dc84bb6' # assets
restrictedLocationSubpath: null
selectionCondition:
__assoc__:
-
- elementType
- craft\elements\Asset
-
- fieldContext
- global
-
- class
- craft\elements\conditions\assets\AssetCondition
selectionLabel: null
showSiteMenu: true
showUnpermittedFiles: false
showUnpermittedVolumes: false
sources: '*'
targetSiteId: null
validateRelatedElements: false
viewMode: list
translationKeyFormat: null
translationMethod: site
type: craft\fields\Assets
b60b3058-4c56-41a1-a364-795da4447e68: # Text
columnSuffix: vwggotoz
contentColumnType: text
fieldGroup: null
handle: text
instructions: null
name: Text
searchable: false
settings:
availableTransforms: ''
availableVolumes: '*'
columnType: text
configSelectionMode: choose
defaultTransform: ''
manualConfig: ''
purifierConfig: null
purifyHtml: true
redactorConfig: null
removeEmptyTags: false
removeInlineStyles: false
removeNbsp: false
showHtmlButtonForNonAdmins: true
showUnpermittedFiles: false
showUnpermittedVolumes: false
uiMode: enlarged
translationKeyFormat: null
translationMethod: none
type: craft\redactor\Field
changedFieldIndicator: 2006199392
field: 88511bdb-a301-42e1-a34e-9e94961cdf23 # Slider
fieldLayouts:
c7624067-84d4-4ee0-997f-3d4cd8fa139b:
tabs:
-
elementCondition: null
elements:
-
elementCondition: null
fieldUid: e0b78a0d-f1f4-4ddb-bc91-055f2aac35eb # Text
instructions: null
label: null
required: true
tip: null
type: craft\fieldlayoutelements\CustomField
uid: 3ca10339-be2b-4f03-8b42-a53f5830eef5
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: 80442797-395a-4aff-a605-589d241acabe # Image
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: 6a2cc0ed-2bd8-46d6-a0ad-6792f8e4a8bb
userCondition: null
warning: null
width: 100
name: Content
uid: 4ac16fa9-54d6-4795-92ea-bca37ba9e5ec
userCondition: null
fields:
80442797-395a-4aff-a605-589d241acabe: # Image
columnSuffix: null
contentColumnType: string
fieldGroup: null
handle: image
instructions: null
name: Image
searchable: false
settings:
allowSelfRelations: false
allowSubfolders: false
allowUploads: true
allowedKinds:
- image
branchLimit: null
defaultUploadLocationSource: 'volume:8867d79b-6217-4d46-bcea-0a137dc84bb6' # assets
defaultUploadLocationSubpath: null
localizeRelations: false
maintainHierarchy: false
maxRelations: null
minRelations: null
previewMode: full
restrictFiles: true
restrictLocation: false
restrictedDefaultUploadSubpath: null
restrictedLocationSource: 'volume:8867d79b-6217-4d46-bcea-0a137dc84bb6' # assets
restrictedLocationSubpath: null
selectionCondition:
__assoc__:
-
- elementType
- craft\elements\Asset
-
- fieldContext
- global
-
- class
- craft\elements\conditions\assets\AssetCondition
selectionLabel: null
showSiteMenu: true
showUnpermittedFiles: false
showUnpermittedVolumes: false
sources: '*'
targetSiteId: null
validateRelatedElements: false
viewMode: list
translationKeyFormat: null
translationMethod: site
type: craft\fields\Assets
e0b78a0d-f1f4-4ddb-bc91-055f2aac35eb: # Text
columnSuffix: oedxoydl
contentColumnType: text
fieldGroup: null
handle: text
instructions: null
name: Text
searchable: false
settings:
availableTransforms: ''
availableVolumes: '*'
columnType: text
configSelectionMode: choose
defaultTransform: ''
manualConfig: ''
purifierConfig: null
purifyHtml: true
redactorConfig: null
removeEmptyTags: false
removeInlineStyles: false
removeNbsp: false
showHtmlButtonForNonAdmins: true
showUnpermittedFiles: false
showUnpermittedVolumes: false
uiMode: enlarged
translationKeyFormat: null
translationMethod: none
type: craft\redactor\Field
fieldLayouts:
73fd81f1-4ac7-433a-9c1d-4ee45a342493:
tabs:
-
elementCondition: null
elements:
-
autocapitalize: true
autocomplete: false
autocorrect: true
class: null
disabled: false
elementCondition: null
id: null
instructions: null
label: null
max: null
min: null
name: null
orientation: null
placeholder: null
readonly: false
requirable: false
size: null
step: null
tip: null
title: null
type: craft\fieldlayoutelements\assets\AssetTitleField
uid: 641415e3-f816-40af-92b9-04370aaea807
userCondition: null
warning: null
width: 100
name: Content
uid: aac2bee3-5e64-4e73-a276-bac1f495c30b
userCondition: null
fs: assets
handle: assets
name: assets
sortOrder: 1
titleTranslationKeyFormat: null
titleTranslationMethod: site
transformFs: ''
transformSubpath: ''
fieldLayouts:
f9de5359-44b4-4f2b-87b1-759049969999:
tabs:
-
elementCondition: null
elements:
-
autocapitalize: true
autocomplete: false
autocorrect: true
class: null
disabled: false
elementCondition: null
id: null
instructions: null
label: null
max: null
min: null
name: null
orientation: null
placeholder: null
readonly: false
requirable: false
size: null
step: null
tip: null
title: null
type: craft\fieldlayoutelements\entries\EntryTitleField
uid: 5e1ac366-7c8e-4ddb-8bbb-8f93853e2cf7
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: f49ee3ef-7623-4f86-9e96-194ac32b7b25 # Images
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: a74f81e9-2a6a-43c4-9a0d-2c875d90869b
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: 2f276d6c-86ef-467a-af14-2374b73b69f3 # Rich text
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: ae139b21-60d2-4e71-8adf-92e8e04a7218
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: 5a9a170c-9780-4162-ab56-dbf793656257 # Short Description
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: 59e114f6-6816-4204-91df-de4e05880acd
userCondition: null
warning: null
width: 100
name: Content
uid: 893ce5d4-94c3-4fc9-814a-e1a029f1a723
userCondition: null
handle: default
hasTitleField: true
name: Default
section: 8ade1e09-014f-4414-8354-936e3a3516eb # News
showStatusField: true
slugTranslationKeyFormat: null
slugTranslationMethod: site
sortOrder: 1
titleFormat: null
titleTranslationKeyFormat: null
titleTranslationMethod: site
color: null
fieldLayouts:
60672ab2-5a9f-43d9-af80-3e309033bbcb:
74f3f035-1f5b-49c4-b108-70e5d544cd26:
tabs:
-
elementCondition: null
......@@ -12,6 +13,8 @@ fieldLayouts:
disabled: false
elementCondition: null
id: null
includeInCards: false
inputType: null
instructions: null
label: null
max: null
......@@ -19,6 +22,7 @@ fieldLayouts:
name: null
orientation: null
placeholder: null
providesThumbs: false
readonly: false
requirable: false
size: null
......@@ -26,33 +30,36 @@ fieldLayouts:
tip: null
title: null
type: craft\fieldlayoutelements\entries\EntryTitleField
uid: bc050da8-a1f4-4332-8b18-3d9c033263b5
uid: d8b78306-a16b-4909-8cdd-a4c8d60a3e4a
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: 486c1fd0-59d3-4e75-8949-264812aa6391 # Href
fieldUid: 91102642-b732-4602-aaaa-37216b816010 # Grid
handle: null
includeInCards: false
instructions: null
label: null
providesThumbs: false
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: fcc7bfc7-47bc-4112-9fdf-45bfa748022a
uid: 87fc05f5-d4dc-42cc-9914-f94d2fb4e5c8
userCondition: null
warning: null
width: 100
name: Content
uid: 357504b5-f6a8-4720-9a8e-604b3d683d28
uid: 7785413f-56b8-4e2f-a3b6-d5fa47e973a1
userCondition: null
handle: default
handle: grid
hasTitleField: true
name: Default
section: a4f1b731-f97d-4920-8033-13ed068d7cdf # Nav
icon: ''
name: Grid
showSlugField: true
showStatusField: true
slugTranslationKeyFormat: null
slugTranslationMethod: site
sortOrder: 1
titleFormat: null
titleFormat: ''
titleTranslationKeyFormat: null
titleTranslationMethod: site
color: null
fieldLayouts:
f9de5359-44b4-4f2b-87b1-759049969999:
38ccd4e7-9212-493a-a4ed-d3040cbdde6a:
tabs:
-
elementCondition: null
elements:
-
elementCondition: null
fieldUid: 6c0b678d-d821-41b4-9a46-e1b709b6f46a # Image
handle: null
includeInCards: false
instructions: null
label: null
providesThumbs: false
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: 77e0ff16-f478-4966-94b1-b759ca03c303
userCondition: null
warning: null
width: 100
-
autocapitalize: true
autocomplete: false
......@@ -12,6 +28,8 @@ fieldLayouts:
disabled: false
elementCondition: null
id: null
includeInCards: false
inputType: null
instructions: null
label: null
max: null
......@@ -19,6 +37,7 @@ fieldLayouts:
name: null
orientation: null
placeholder: null
providesThumbs: false
readonly: false
requirable: false
size: null
......@@ -26,57 +45,36 @@ fieldLayouts:
tip: null
title: null
type: craft\fieldlayoutelements\entries\EntryTitleField
uid: 5e1ac366-7c8e-4ddb-8bbb-8f93853e2cf7
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: f49ee3ef-7623-4f86-9e96-194ac32b7b25 # Images
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: a74f81e9-2a6a-43c4-9a0d-2c875d90869b
uid: 0c25cd39-fab5-4df3-ac7b-76a720f8b652
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: 2f276d6c-86ef-467a-af14-2374b73b69f3 # Rich text
handle: null
includeInCards: false
instructions: null
label: null
providesThumbs: false
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: ae139b21-60d2-4e71-8adf-92e8e04a7218
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: 5a9a170c-9780-4162-ab56-dbf793656257 # Short Description
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: 59e114f6-6816-4204-91df-de4e05880acd
uid: 9a46fafb-4e2a-4680-a243-f5d8e8f3e495
userCondition: null
warning: null
width: 100
name: Content
uid: 893ce5d4-94c3-4fc9-814a-e1a029f1a723
uid: 5257cc11-b51c-4ea1-b3f3-8d748eb08aaf
userCondition: null
handle: default
handle: gridItem
hasTitleField: true
name: Default
section: 8ade1e09-014f-4414-8354-936e3a3516eb # News
icon: ''
name: 'Grid Item'
showSlugField: true
showStatusField: true
slugTranslationKeyFormat: null
slugTranslationMethod: site
sortOrder: 1
titleFormat: null
titleFormat: ''
titleTranslationKeyFormat: null
titleTranslationMethod: site
color: null
fieldLayouts:
c3e4c354-e556-43f9-9c17-0fd20b5f6b54:
tabs:
......@@ -18,6 +19,8 @@ fieldLayouts:
disabled: false
elementCondition: null
id: null
includeInCards: false
inputType: null
instructions: null
label: null
max: null
......@@ -25,6 +28,7 @@ fieldLayouts:
name: null
orientation: null
placeholder: null
providesThumbs: false
readonly: false
requirable: false
size: null
......@@ -39,8 +43,11 @@ fieldLayouts:
-
elementCondition: null
fieldUid: 2e014bcb-5ee8-48d0-9e8c-33a881bda8f4 # Elements
handle: null
includeInCards: false
instructions: null
label: null
providesThumbs: false
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
......@@ -53,12 +60,12 @@ fieldLayouts:
userCondition: null
handle: home
hasTitleField: false
icon: house
name: Home
section: 274f2409-7af1-4e0f-8332-b8787dbb8dbf # Home
showSlugField: true
showStatusField: true
slugTranslationKeyFormat: null
slugTranslationMethod: site
sortOrder: 1
titleFormat: '{section.name|raw}'
titleTranslationKeyFormat: null
titleTranslationMethod: site
color: null
fieldLayouts:
595333b0-e6a8-4ab9-96c0-514bf45d3240:
5ecc7cb3-753f-451e-be8d-d0058991081e:
tabs:
-
elementCondition: null
......@@ -12,6 +13,8 @@ fieldLayouts:
disabled: false
elementCondition: null
id: null
includeInCards: false
inputType: null
instructions: null
label: null
max: null
......@@ -19,6 +22,7 @@ fieldLayouts:
name: null
orientation: null
placeholder: null
providesThumbs: false
readonly: false
requirable: false
size: null
......@@ -26,69 +30,132 @@ fieldLayouts:
tip: null
title: null
type: craft\fieldlayoutelements\entries\EntryTitleField
uid: 43f1e9d5-48d6-4098-81ab-5debdd8e1e9f
uid: 49563956-39a3-49d9-acab-b7b4dfbfafad
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: f49ee3ef-7623-4f86-9e96-194ac32b7b25 # Images
fieldUid: 2f276d6c-86ef-467a-af14-2374b73b69f3 # Rich text
handle: null
includeInCards: false
instructions: null
label: null
providesThumbs: false
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: 53e1fc61-caf7-4a55-8db3-5056218d1894
uid: 6ae4c494-63c7-4c1d-8c95-1bfc8229155c
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: 2f276d6c-86ef-467a-af14-2374b73b69f3 # Rich text
fieldUid: 6c0b678d-d821-41b4-9a46-e1b709b6f46a # Image
handle: null
includeInCards: false
instructions: null
label: null
providesThumbs: false
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: 2a5e7d8f-90cc-43de-abf9-0f098c550186
uid: 8de1460d-5203-499f-8d1b-571976320ff7
userCondition: null
warning: null
width: 100
name: Content
uid: 78e6948a-3823-412d-8440-527fb9bc3db5
userCondition: null
-
elementCondition: null
elements:
-
elementCondition: null
fieldUid: 5a9a170c-9780-4162-ab56-dbf793656257 # Short Description
fieldUid: 3b4a40f1-a1d8-41f8-825e-c3c0eb6c708f # Headline
handle: null
includeInCards: false
instructions: null
label: null
providesThumbs: false
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: c0d57e2e-015f-43c3-93fa-805e7fc89633
uid: 7989884e-f55f-4917-bb02-fd255646cbaa
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: 6a8f437c-f040-4357-9376-d06d779f4b9d # Current Status
fieldUid: 6ae442e6-bcd8-4f50-804b-51a2015946f0 # Grid Layout
handle: null
includeInCards: false
instructions: null
label: null
providesThumbs: false
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: 28252ebb-6f89-49b2-a914-5e97fd48231b
uid: db02e2e6-8a5d-4bba-8255-710f9963c177
userCondition: null
warning: null
width: 100
name: Content
uid: 51ecf41e-744c-4f6a-a6ac-633782e56280
-
elementCondition: null
fieldUid: 49813619-b92d-41f4-85aa-bf2839c85e3b # Background Color
handle: null
includeInCards: false
instructions: null
label: null
providesThumbs: false
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: 42624d53-9e05-4a58-8635-ba2d402bdf06
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: c14ac9b2-6fd7-4bd4-bd44-d20c3d4a481e # Max Width Limit
handle: null
includeInCards: false
instructions: null
label: null
providesThumbs: false
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: 4a294429-9d6e-41e9-96d4-df6c378710e3
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: c5e3577f-b7c7-494e-ae09-37ac91f9403b # Label
handle: null
includeInCards: false
instructions: null
label: null
providesThumbs: false
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: 98c722bb-44fb-4111-8e55-83899312aceb
userCondition: null
warning: null
width: 100
name: General
uid: 77bd7e14-c6ab-4e67-b9ca-a4fadd7d739b
userCondition: null
handle: default
handle: imageAndText
hasTitleField: true
name: Default
section: 2bc4df95-41a1-4200-b353-96b8a3327b7c # Projects
icon: ''
name: 'Image and Text'
showSlugField: true
showStatusField: true
slugTranslationKeyFormat: null
slugTranslationMethod: site
sortOrder: 1
titleFormat: null
titleFormat: ''
titleTranslationKeyFormat: null
titleTranslationMethod: site
color: null
fieldLayouts:
4a191cf5-ee27-4e23-97e5-aace4c8f7b42:
tabs:
......@@ -12,6 +13,8 @@ fieldLayouts:
disabled: false
elementCondition: null
id: null
includeInCards: false
inputType: null
instructions: null
label: null
max: null
......@@ -19,6 +22,7 @@ fieldLayouts:
name: null
orientation: null
placeholder: null
providesThumbs: false
readonly: false
requirable: false
size: null
......@@ -33,8 +37,11 @@ fieldLayouts:
-
elementCondition: null
fieldUid: 2e014bcb-5ee8-48d0-9e8c-33a881bda8f4 # Elements
handle: null
includeInCards: false
instructions: null
label: null
providesThumbs: false
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
......@@ -47,12 +54,12 @@ fieldLayouts:
userCondition: null
handle: impressum
hasTitleField: false
icon: null
name: Impressum
section: 42532bd7-0e69-4993-98d9-a64bb02aa1d9 # Impressum
showSlugField: true
showStatusField: true
slugTranslationKeyFormat: null
slugTranslationMethod: site
sortOrder: 1
titleFormat: '{section.name|raw}'
titleTranslationKeyFormat: null
titleTranslationMethod: site
columnSuffix: gwvauijn
contentColumnType: text
fieldGroup: b8422f00-5252-4da9-b455-95d5ac4235af # Global
handle: address
instructions: null
name: Address
searchable: false
settings:
availableTransforms: ''
availableVolumes: '*'
columnType: text
configSelectionMode: choose
defaultTransform: ''
manualConfig: ''
purifierConfig: null
purifyHtml: true
redactorConfig: null
removeEmptyTags: false
removeInlineStyles: false
removeNbsp: false
showHtmlButtonForNonAdmins: true
showUnpermittedFiles: false
showUnpermittedVolumes: false
uiMode: enlarged
errorMessage: 'Component class ''craft\redactor\Field'' belongs to an uninstalled plugin (Redactor).'
expectedType: craft\redactor\Field
settings:
__assoc__:
0:
- availableTransforms
- ''
1:
- availableVolumes
- '*'
2:
- columnType
- text
3:
- configSelectionMode
- choose
4:
- defaultTransform
- ''
5:
- manualConfig
- ''
7:
- purifyHtml
- true
9:
- removeEmptyTags
- false
10:
- removeInlineStyles
- false
11:
- removeNbsp
- false
12:
- showHtmlButtonForNonAdmins
- true
13:
- showUnpermittedFiles
- false
14:
- showUnpermittedVolumes
- false
15:
- uiMode
- enlarged
translationKeyFormat: null
translationMethod: site
type: craft\redactor\Field
translationMethod: none
type: craft\fields\MissingField
columnSuffix: null
handle: backgroundColor
instructions: null
name: 'Background Color'
searchable: false
settings:
options:
-
__assoc__:
-
- label
- white
-
- value
- white
-
- default
- '1'
-
__assoc__:
-
- label
- grey
-
- value
- grey
-
- default
- ''
translationKeyFormat: null
translationMethod: none
type: craft\fields\Dropdown
columnSuffix: jptyhjsp
contentColumnType: text
fieldGroup: b8422f00-5252-4da9-b455-95d5ac4235af # Global
handle: companyRegisterNumber
instructions: null
name: 'Company Register Number'
searchable: false
settings:
availableTransforms: ''
availableVolumes: '*'
columnType: text
configSelectionMode: choose
defaultTransform: ''
manualConfig: ''
purifierConfig: null
purifyHtml: true
redactorConfig: null
removeEmptyTags: false
removeInlineStyles: false
removeNbsp: false
showHtmlButtonForNonAdmins: true
showUnpermittedFiles: false
showUnpermittedVolumes: false
uiMode: enlarged
errorMessage: 'Component class ''craft\redactor\Field'' belongs to an uninstalled plugin (Redactor).'
expectedType: craft\redactor\Field
settings:
__assoc__:
0:
- availableTransforms
- ''
1:
- availableVolumes
- '*'
2:
- columnType
- text
3:
- configSelectionMode
- choose
4:
- defaultTransform
- ''
5:
- manualConfig
- ''
7:
- purifyHtml
- true
9:
- removeEmptyTags
- false
10:
- removeInlineStyles
- false
11:
- removeNbsp
- false
12:
- showHtmlButtonForNonAdmins
- true
13:
- showUnpermittedFiles
- false
14:
- showUnpermittedVolumes
- false
15:
- uiMode
- enlarged
translationKeyFormat: null
translationMethod: site
type: craft\redactor\Field
translationMethod: none
type: craft\fields\MissingField
columnSuffix: vvzegoci
contentColumnType: string(7)
fieldGroup: c34bc9d5-1143-432f-b2e9-be04e0f33194 # Common
handle: currentStatus
instructions: null
name: 'Current Status'
searchable: false
settings:
columnType: null
options:
-
__assoc__:
......
columnSuffix: null
contentColumnType: string
fieldGroup: c34bc9d5-1143-432f-b2e9-be04e0f33194 # Common
handle: elements
instructions: null
name: Elements
searchable: false
settings:
contentTable: '{{%matrixcontent_elements}}'
maxBlocks: null
minBlocks: null
createButtonLabel: null
entryTypes:
- 22adc7c4-d843-4d61-88c0-94e15180d3da # Image and Text
- b99aa5c1-9239-4964-800e-10eea7ab7fd4 # Grid
includeTableView: false
maxEntries: null
minEntries: null
pageSize: 50
propagationKeyFormat: null
propagationMethod: all
showCardsInGrid: false
viewMode: cards
translationKeyFormat: null
translationMethod: site
type: craft\fields\Matrix
columnSuffix: null
contentColumnType: string
fieldGroup: c34bc9d5-1143-432f-b2e9-be04e0f33194 # Common
handle: elements
handle: grid
instructions: null
name: Elements
name: Grid
searchable: false
settings:
contentTable: '{{%matrixcontent_elements}}'
maxBlocks: null
minBlocks: null
contentTable: ''
createButtonLabel: null
entryTypes:
- 42cf1b22-b863-45f6-bb2d-ffecd1aa6474 # Grid Item
includeTableView: false
maxEntries: null
minEntries: null
pageSize: 50
propagationKeyFormat: null
propagationMethod: all
showCardsInGrid: false
viewMode: cards
translationKeyFormat: null
translationMethod: site
type: craft\fields\Matrix
type: verbb\supertable\fields\SuperTableField
columnSuffix: vvzegoci
contentColumnType: string(7)
fieldGroup: c34bc9d5-1143-432f-b2e9-be04e0f33194 # Common
handle: currentStatus
columnSuffix: null
handle: gridLayout
instructions: null
name: 'Current Status'
name: 'Grid Layout'
searchable: false
settings:
columnType: null
options:
-
__assoc__:
-
- label
- Ongoing
- '5050'
-
- value
- ongoing
- '5050'
-
- default
- '1'
......@@ -23,10 +20,10 @@ settings:
__assoc__:
-
- label
- Done
- '2080'
-
- value
- done
- '2080'
-
- default
- ''
......@@ -34,10 +31,21 @@ settings:
__assoc__:
-
- label
- Future
- '8020'
-
- value
- future
- '8020'
-
- default
- ''
-
__assoc__:
-
- label
- '6040'
-
- value
- '6040'
-
- default
- ''
......
columnSuffix: nlhtarji
contentColumnType: text
fieldGroup: c34bc9d5-1143-432f-b2e9-be04e0f33194 # Common
handle: href
columnSuffix: null
handle: headline
instructions: null
name: Href
name: Headline
searchable: false
settings:
byteLimit: null
charLimit: null
code: false
columnType: null
initialRows: 4
multiline: false
placeholder: null
......
columnSuffix: nlhtarji
contentColumnType: text
fieldGroup: c34bc9d5-1143-432f-b2e9-be04e0f33194 # Common
handle: href
instructions: null
name: Href
......@@ -9,7 +7,6 @@ settings:
byteLimit: null
charLimit: null
code: false
columnType: null
initialRows: 4
multiline: false
placeholder: null
......
columnSuffix: null
contentColumnType: string
fieldGroup: b8422f00-5252-4da9-b455-95d5ac4235af # Global
handle: logo
handle: image
instructions: null
name: Logo
name: Image
searchable: false
settings:
allowSelfRelations: false
......@@ -16,27 +14,17 @@ settings:
defaultUploadLocationSubpath: null
localizeRelations: false
maintainHierarchy: false
maxRelations: 1
minRelations: 1
maxRelations: null
minRelations: null
previewMode: full
restrictFiles: true
restrictLocation: false
restrictedDefaultUploadSubpath: null
restrictedLocationSource: 'volume:8867d79b-6217-4d46-bcea-0a137dc84bb6' # assets
restrictedLocationSubpath: null
selectionCondition:
__assoc__:
-
- elementType
- craft\elements\Asset
-
- fieldContext
- global
-
- class
- craft\elements\conditions\assets\AssetCondition
selectionLabel: null
showSiteMenu: true
showCardsInGrid: false
showSiteMenu: false
showUnpermittedFiles: false
showUnpermittedVolumes: false
sources: '*'
......
columnSuffix: null
contentColumnType: string
fieldGroup: b6fcef38-d001-4b61-9d45-a1a088df18ba # Channel Types
handle: images
instructions: null
name: Images
......@@ -23,18 +21,8 @@ settings:
restrictedDefaultUploadSubpath: null
restrictedLocationSource: 'volume:8867d79b-6217-4d46-bcea-0a137dc84bb6' # assets
restrictedLocationSubpath: null
selectionCondition:
__assoc__:
-
- elementType
- craft\elements\Asset
-
- fieldContext
- global
-
- class
- craft\elements\conditions\assets\AssetCondition
selectionLabel: null
showCardsInGrid: false
showSiteMenu: true
showUnpermittedFiles: false
showUnpermittedVolumes: false
......
columnSuffix: tcnoyjil
contentColumnType: text
fieldGroup: b6fcef38-d001-4b61-9d45-a1a088df18ba # Channel Types
handle: shortDescription
columnSuffix: null
handle: label
instructions: null
name: 'Short Description'
name: Label
searchable: false
settings:
byteLimit: null
charLimit: null
code: false
columnType: null
initialRows: 4
multiline: false
placeholder: null
......
columnSuffix: null
contentColumnType: string
fieldGroup: b8422f00-5252-4da9-b455-95d5ac4235af # Global
handle: logo
instructions: null
name: Logo
......@@ -24,18 +22,8 @@ settings:
restrictedDefaultUploadSubpath: null
restrictedLocationSource: 'volume:8867d79b-6217-4d46-bcea-0a137dc84bb6' # assets
restrictedLocationSubpath: null
selectionCondition:
__assoc__:
-
- elementType
- craft\elements\Asset
-
- fieldContext
- global
-
- class
- craft\elements\conditions\assets\AssetCondition
selectionLabel: null
showCardsInGrid: false
showSiteMenu: true
showUnpermittedFiles: false
showUnpermittedVolumes: false
......
columnSuffix: null
handle: maxWidthLimit
instructions: null
name: 'Max Width Limit'
searchable: false
settings:
options:
-
__assoc__:
-
- label
- 'Max Width Limit'
-
- value
- maxWidthLimit
-
- default
- '1'
translationKeyFormat: null
translationMethod: none
type: craft\fields\Dropdown
columnSuffix: null
contentColumnType: string
fieldGroup: c34bc9d5-1143-432f-b2e9-be04e0f33194 # Common
handle: navigation
instructions: null
name: Navigation
......@@ -12,18 +10,8 @@ settings:
maintainHierarchy: false
maxRelations: null
minRelations: null
selectionCondition:
__assoc__:
-
- elementType
- craft\elements\Entry
-
- fieldContext
- global
-
- class
- craft\elements\conditions\entries\EntryCondition
selectionLabel: null
showCardsInGrid: false
showSiteMenu: false
sources: '*'
targetSiteId: null
......
columnSuffix: mqavplnq
contentColumnType: text
fieldGroup: b6fcef38-d001-4b61-9d45-a1a088df18ba # Channel Types
handle: richText
instructions: null
name: 'Rich text'
searchable: false
settings:
availableTransforms: ''
availableVolumes: '*'
columnType: text
configSelectionMode: choose
defaultTransform: ''
manualConfig: ''
purifierConfig: null
purifyHtml: true
redactorConfig: null
removeEmptyTags: false
removeInlineStyles: false
removeNbsp: false
showHtmlButtonForNonAdmins: true
showUnpermittedFiles: false
showUnpermittedVolumes: false
uiMode: enlarged
errorMessage: 'Component class ''craft\redactor\Field'' belongs to an uninstalled plugin (Redactor).'
expectedType: craft\redactor\Field
settings:
__assoc__:
0:
- availableTransforms
- ''
1:
- availableVolumes
- '*'
2:
- columnType
- text
3:
- configSelectionMode
- choose
4:
- defaultTransform
- ''
5:
- manualConfig
- ''
7:
- purifyHtml
- true
9:
- removeEmptyTags
- false
10:
- removeInlineStyles
- false
11:
- removeNbsp
- false
12:
- showHtmlButtonForNonAdmins
- true
13:
- showUnpermittedFiles
- false
14:
- showUnpermittedVolumes
- false
15:
- uiMode
- enlarged
translationKeyFormat: null
translationMethod: site
type: craft\redactor\Field
translationMethod: none
type: craft\fields\MissingField
columnSuffix: tcnoyjil
contentColumnType: text
fieldGroup: b6fcef38-d001-4b61-9d45-a1a088df18ba # Channel Types
handle: shortDescription
instructions: null
name: 'Short Description'
......@@ -9,7 +7,6 @@ settings:
byteLimit: null
charLimit: null
code: false
columnType: null
initialRows: 4
multiline: false
placeholder: null
......
......@@ -7,8 +7,11 @@ fieldLayouts:
-
elementCondition: null
fieldUid: ed35c68b-5c29-4512-92d6-18bf5283b995 # Logo
handle: null
includeInCards: false
instructions: null
label: null
providesThumbs: false
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
......@@ -19,8 +22,11 @@ fieldLayouts:
-
elementCondition: null
fieldUid: 33db6c0c-386a-4261-8730-96efed307516 # Address
handle: null
includeInCards: false
instructions: null
label: null
providesThumbs: false
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
......@@ -31,8 +37,11 @@ fieldLayouts:
-
elementCondition: null
fieldUid: 7f4300a5-5dd5-4144-9b87-1ad88188114f # Company Register Number
handle: null
includeInCards: false
instructions: null
label: null
providesThumbs: false
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
......
publicToken:
enabled: false
expiryDate: null
field: 2e014bcb-5ee8-48d0-9e8c-33a881bda8f4 # Elements
fieldLayouts:
48dd92d6-3209-4ad0-8ba5-9dd0d36c0cac:
tabs:
-
elementCondition: null
elements:
-
elementCondition: null
fieldUid: 0d4e105e-2cdf-4ea0-a1b4-6ca09a9983dd # Headline
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: df1378fd-6edd-45ad-9acb-ea8e2d73b4b3
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: 09f14279-5c24-4955-b2be-439a0ae44c85 # Content Grid
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: b4a4be49-dc94-463c-b7ce-6273ec8ad0f7
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: 9f6f218e-6133-4095-bf95-f37cba729f73 # Max Width Limit
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: b0eaba71-4fc6-45d2-b7cf-48fa1744d205
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: f6c43733-7be4-4646-bcbe-98afacdf796e # Label
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: a6a042c1-7dc8-484a-9258-b00d168d08bf
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: 2a1afa39-32e3-4f1f-8766-488817c00035 # Background Color
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: 8ddad719-d412-4ccd-9623-7fb90f9db3fb
userCondition: null
warning: null
width: 100
name: Content
uid: 50c7a9cf-bcd5-4bc6-86c5-f7ec9bd0f666
userCondition: null
fields:
0d4e105e-2cdf-4ea0-a1b4-6ca09a9983dd: # Headline
columnSuffix: moxqvtlq
contentColumnType: text
fieldGroup: null
handle: headline
instructions: null
name: Headline
searchable: false
settings:
availableTransforms: ''
availableVolumes: '*'
columnType: text
configSelectionMode: choose
defaultTransform: ''
manualConfig: ''
purifierConfig: null
purifyHtml: true
redactorConfig: null
removeEmptyTags: false
removeInlineStyles: false
removeNbsp: false
showHtmlButtonForNonAdmins: true
showUnpermittedFiles: false
showUnpermittedVolumes: false
uiMode: enlarged
translationKeyFormat: null
translationMethod: site
type: craft\redactor\Field
2a1afa39-32e3-4f1f-8766-488817c00035: # Background Color
columnSuffix: fclouqej
contentColumnType: string(9)
fieldGroup: null
handle: backgroundColor
instructions: null
name: 'Background Color'
searchable: false
settings:
columnType: null
options:
-
__assoc__:
-
- label
- 'Light Grey'
-
- value
- lightGrey
-
- default
- '1'
-
__assoc__:
-
- label
- Grey
-
- value
- grey
-
- default
- ''
translationKeyFormat: null
translationMethod: none
type: craft\fields\Dropdown
9f6f218e-6133-4095-bf95-f37cba729f73: # Max Width Limit
columnSuffix: bmehwtnm
contentColumnType: string(13)
fieldGroup: null
handle: maxWidthLimit
instructions: null
name: 'Max Width Limit'
searchable: false
settings:
columnType: null
options:
-
__assoc__:
-
- label
- 'Yes'
-
- value
- maxWidthLimit
-
- default
- ''
-
__assoc__:
-
- label
- 'No'
-
- value
- 'no'
-
- default
- ''
translationKeyFormat: null
translationMethod: none
type: craft\fields\Dropdown
09f14279-5c24-4955-b2be-439a0ae44c85: # Content Grid
columnSuffix: null
contentColumnType: string
fieldGroup: null
handle: contentGrid
instructions: null
name: 'Content Grid'
searchable: false
settings:
blockTypeFields: 0
changedFieldIndicator: 70420724
columns:
__assoc__:
-
- 522ac542-6fdf-42d3-bc0d-09e198bd75f9 # Image
-
__assoc__:
-
- width
- ''
-
- b60b3058-4c56-41a1-a364-795da4447e68 # Text
-
__assoc__:
-
- width
- ''
contentTable: '{{%stc_6_contentgrid}}'
fieldLayout: matrix
maxRows: null
minRows: null
propagationKeyFormat: null
propagationMethod: all
selectionLabel: null
staticField: null
translationKeyFormat: null
translationMethod: site
type: verbb\supertable\fields\SuperTableField
f6c43733-7be4-4646-bcbe-98afacdf796e: # Label
columnSuffix: yrpomtfc
contentColumnType: text
fieldGroup: null
handle: label
instructions: null
name: Label
searchable: false
settings:
byteLimit: null
charLimit: null
code: false
columnType: null
initialRows: 4
multiline: false
placeholder: null
uiMode: normal
translationKeyFormat: null
translationMethod: none
type: craft\fields\PlainText
handle: contentGrid
name: 'Content Grid'
sortOrder: 4
field: 2e014bcb-5ee8-48d0-9e8c-33a881bda8f4 # Elements
fieldLayouts:
fde5a2cb-3886-4843-9ccc-7956fb59d98b:
tabs:
-
elementCondition: null
elements:
-
elementCondition: null
fieldUid: 51182d09-919a-4d4e-a6bd-0f0bc0ecb631 # Image
instructions: null
label: null
required: true
tip: null
type: craft\fieldlayoutelements\CustomField
uid: 85869db1-900b-43da-aaad-e34640b78c2d
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: 195610f8-13df-4d94-8a80-25f88b30f837 # Text
instructions: null
label: null
required: true
tip: null
type: craft\fieldlayoutelements\CustomField
uid: 229f3b1c-de84-46ee-b9e3-5db3c3a7d991
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: d45c9db8-4931-4d1b-9e20-f0f2574904a7 # Grid Layout
instructions: null
label: null
required: true
tip: null
type: craft\fieldlayoutelements\CustomField
uid: e6bc6ae8-1ea1-442e-80ce-9be6558b85ab
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: bd600fbe-5b75-4222-97b8-75c5210b1bb2 # Max Width Limit
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: a79dc1c8-c256-4550-be55-2890de74dac3
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: bdba3344-51c2-4e93-b740-2dfcd2133430 # Headline
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: 80e85874-9ef6-43a4-a66b-6409924cd3ab
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: 01ceb8fd-9fd1-4844-976c-af71522cec3d # Label
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: 868bf6ed-50af-4742-a478-19c04d21af53
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: 5742d887-cd6d-490d-8779-bed71db90e82 # Background Color
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: 6c1d4ec9-d77d-4df0-8b7a-2eecb992e028
userCondition: null
warning: null
width: 100
name: Content
uid: fdb6ce9b-0af6-47c8-8aae-f6ffa95763bb
userCondition: null
fields:
01ceb8fd-9fd1-4844-976c-af71522cec3d: # Label
columnSuffix: nojwtcan
contentColumnType: text
fieldGroup: null
handle: label
instructions: null
name: Label
searchable: false
settings:
byteLimit: null
charLimit: null
code: false
columnType: null
initialRows: 4
multiline: false
placeholder: null
uiMode: normal
translationKeyFormat: null
translationMethod: none
type: craft\fields\PlainText
5742d887-cd6d-490d-8779-bed71db90e82: # Background Color
columnSuffix: wjdxcytb
contentColumnType: string(9)
fieldGroup: null
handle: backgroundColor
instructions: null
name: 'Background Color'
searchable: false
settings:
columnType: null
options:
-
__assoc__:
-
- label
- 'Light Grey'
-
- value
- lightGrey
-
- default
- '1'
-
__assoc__:
-
- label
- Grey
-
- value
- grey
-
- default
- ''
translationKeyFormat: null
translationMethod: none
type: craft\fields\Dropdown
51182d09-919a-4d4e-a6bd-0f0bc0ecb631: # Image
columnSuffix: null
contentColumnType: string
fieldGroup: null
handle: image
instructions: null
name: Image
searchable: false
settings:
allowSelfRelations: false
allowSubfolders: false
allowUploads: true
allowedKinds:
- image
branchLimit: null
defaultUploadLocationSource: 'volume:8867d79b-6217-4d46-bcea-0a137dc84bb6' # assets
defaultUploadLocationSubpath: null
localizeRelations: false
maintainHierarchy: false
maxRelations: null
minRelations: null
previewMode: full
restrictFiles: true
restrictLocation: false
restrictedDefaultUploadSubpath: null
restrictedLocationSource: 'volume:8867d79b-6217-4d46-bcea-0a137dc84bb6' # assets
restrictedLocationSubpath: null
selectionLabel: null
showSiteMenu: true
showUnpermittedFiles: false
showUnpermittedVolumes: false
sources: '*'
targetSiteId: null
validateRelatedElements: false
viewMode: list
translationKeyFormat: null
translationMethod: site
type: craft\fields\Assets
195610f8-13df-4d94-8a80-25f88b30f837: # Text
columnSuffix: qotektdf
contentColumnType: text
fieldGroup: null
handle: text
instructions: null
name: Text
searchable: false
settings:
availableTransforms: ''
availableVolumes: '*'
columnType: text
configSelectionMode: choose
defaultTransform: ''
manualConfig: ''
purifierConfig: null
purifyHtml: true
redactorConfig: null
removeEmptyTags: false
removeInlineStyles: false
removeNbsp: false
showHtmlButtonForNonAdmins: true
showUnpermittedFiles: false
showUnpermittedVolumes: false
uiMode: enlarged
translationKeyFormat: null
translationMethod: site
type: craft\redactor\Field
bd600fbe-5b75-4222-97b8-75c5210b1bb2: # Max Width Limit
columnSuffix: yqedembr
contentColumnType: string(13)
fieldGroup: null
handle: maxWidthLimit
instructions: null
name: 'Max Width Limit'
searchable: false
settings:
columnType: null
options:
-
__assoc__:
-
- label
- 'Yes'
-
- value
- maxWidthLimit
-
- default
- '1'
-
__assoc__:
-
- label
- 'No'
-
- value
- 'no'
-
- default
- ''
translationKeyFormat: null
translationMethod: none
type: craft\fields\Dropdown
bdba3344-51c2-4e93-b740-2dfcd2133430: # Headline
columnSuffix: jbmfzwdi
contentColumnType: text
fieldGroup: null
handle: headline
instructions: null
name: Headline
searchable: false
settings:
availableTransforms: ''
availableVolumes: '*'
columnType: text
configSelectionMode: choose
defaultTransform: ''
manualConfig: ''
purifierConfig: null
purifyHtml: true
redactorConfig: null
removeEmptyTags: false
removeInlineStyles: false
removeNbsp: false
showHtmlButtonForNonAdmins: true
showUnpermittedFiles: false
showUnpermittedVolumes: false
uiMode: enlarged
translationKeyFormat: null
translationMethod: none
type: craft\redactor\Field
d45c9db8-4931-4d1b-9e20-f0f2574904a7: # Grid Layout
columnSuffix: imrmyiik
contentColumnType: string(4)
fieldGroup: null
handle: gridLayout
instructions: null
name: 'Grid Layout'
searchable: false
settings:
columnType: null
options:
-
__assoc__:
-
- label
- '50% 50%'
-
- value
- '5050'
-
- default
- '1'
-
__assoc__:
-
- label
- '20% 80%'
-
- value
- '2080'
-
- default
- ''
translationKeyFormat: null
translationMethod: none
type: craft\fields\RadioButtons
handle: imageAndText
name: 'Image And Text'
sortOrder: 2
field: 2e014bcb-5ee8-48d0-9e8c-33a881bda8f4 # Elements
fieldLayouts:
b1c7b438-613c-4906-a0a6-050def78885c:
tabs:
-
elementCondition: null
elements:
-
elementCondition: null
fieldUid: dc100381-7900-4977-9cb9-ca826016ec02 # Max Width Limit
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: fbbd8ed1-194a-4630-8c0e-02f22dbecfb6
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: 7aa20c43-822b-4a4d-937e-e91605bdbb97 # Label
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: b879c1de-4b73-4e73-bca7-f66621140e12
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: 0a3f98b5-f071-4d31-8e94-7635d5ac5711 # Background Color
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: 480c354b-c278-4573-9d64-65b39e6d7053
userCondition: null
warning: null
width: 100
name: Content
uid: 284e5bef-631a-42c5-8444-920e64048fb8
userCondition: null
fields:
0a3f98b5-f071-4d31-8e94-7635d5ac5711: # Background Color
columnSuffix: ciqpgwaj
contentColumnType: string(9)
fieldGroup: null
handle: backgroundColor
instructions: null
name: 'Background Color'
searchable: false
settings:
columnType: null
options:
-
__assoc__:
-
- label
- 'Light Grey'
-
- value
- lightGrey
-
- default
- '1'
-
__assoc__:
-
- label
- Grey
-
- value
- grey
-
- default
- ''
translationKeyFormat: null
translationMethod: none
type: craft\fields\Dropdown
7aa20c43-822b-4a4d-937e-e91605bdbb97: # Label
columnSuffix: hbkllnnc
contentColumnType: text
fieldGroup: null
handle: label
instructions: null
name: Label
searchable: false
settings:
byteLimit: null
charLimit: null
code: false
columnType: null
initialRows: 4
multiline: false
placeholder: null
uiMode: normal
translationKeyFormat: null
translationMethod: none
type: craft\fields\PlainText
dc100381-7900-4977-9cb9-ca826016ec02: # Max Width Limit
columnSuffix: hqahciqg
contentColumnType: string(13)
fieldGroup: null
handle: maxWidthLimit
instructions: null
name: 'Max Width Limit'
searchable: false
settings:
columnType: null
options:
-
__assoc__:
-
- label
- 'Yes'
-
- value
- maxWidthLimit
-
- default
- '1'
-
__assoc__:
-
- label
- 'No'
-
- value
- 'no'
-
- default
- ''
translationKeyFormat: null
translationMethod: none
type: craft\fields\Dropdown
handle: news
name: News
sortOrder: 5
field: 2e014bcb-5ee8-48d0-9e8c-33a881bda8f4 # Elements
fieldLayouts:
b4c1fba8-ff38-4298-81a0-c0d0134b50aa:
tabs:
-
elementCondition: null
elements:
-
elementCondition: null
fieldUid: 566ae2e9-84c0-413c-bc03-82ce2903658d # Max Width Limit
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: cafd60db-54d4-49e2-880c-2ac706eea17a
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: 7b1be846-f335-4b1f-b5eb-7aebf5e47751 # Label
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: 0a02234e-e6d7-4514-b155-83f68f76adb5
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: e4c6a38f-e4c3-45fa-b751-b3199bf5b2a7 # Background Color
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: c0e39927-c6d4-4be7-b0c6-67e5273f2daa
userCondition: null
warning: null
width: 100
name: Content
uid: e4426e9f-6376-4e19-8cba-e7c3895da485
userCondition: null
fields:
7b1be846-f335-4b1f-b5eb-7aebf5e47751: # Label
columnSuffix: qarsoham
contentColumnType: text
fieldGroup: null
handle: label
instructions: null
name: Label
searchable: false
settings:
byteLimit: null
charLimit: null
code: false
columnType: null
initialRows: 4
multiline: false
placeholder: null
uiMode: normal
translationKeyFormat: null
translationMethod: none
type: craft\fields\PlainText
566ae2e9-84c0-413c-bc03-82ce2903658d: # Max Width Limit
columnSuffix: agjthzyh
contentColumnType: string(13)
fieldGroup: null
handle: maxWidthLimit
instructions: null
name: 'Max Width Limit'
searchable: false
settings:
columnType: null
options:
-
__assoc__:
-
- label
- 'Yes'
-
- value
- maxWidthLimit
-
- default
- '1'
-
__assoc__:
-
- label
- 'No'
-
- value
- 'no'
-
- default
- ''
translationKeyFormat: null
translationMethod: none
type: craft\fields\Dropdown
e4c6a38f-e4c3-45fa-b751-b3199bf5b2a7: # Background Color
columnSuffix: lgpkogmh
contentColumnType: string(9)
fieldGroup: null
handle: backgroundColor
instructions: null
name: 'Background Color'
searchable: false
settings:
columnType: null
options:
-
__assoc__:
-
- label
- 'Light Grey'
-
- value
- lightGrey
-
- default
- '1'
-
__assoc__:
-
- label
- Grey
-
- value
- grey
-
- default
- ''
translationKeyFormat: null
translationMethod: none
type: craft\fields\Dropdown
handle: projects
name: Projects
sortOrder: 6
field: 2e014bcb-5ee8-48d0-9e8c-33a881bda8f4 # Elements
fieldLayouts:
0f8f115f-3839-4ea0-9dd4-16b5f6e72fc2:
tabs:
-
elementCondition: null
elements:
-
elementCondition: null
fieldUid: 88511bdb-a301-42e1-a34e-9e94961cdf23 # Slider
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: d443acd7-5943-44b5-9f10-eb24f369b65c
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: 594a2aa6-6d44-4bee-91c4-0d24c5bdb3bb # maxWidthLimit
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: 48e053c5-7055-4857-807c-cc0255220efa
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: 0e0fa14c-6984-4cad-b340-1646f92c60f9 # Label
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: 5b30f037-88bb-471f-86ec-f45c64288d61
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: 8ca8b2b9-c18c-43ae-8fda-4da2a908ebf1 # Background Color
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: 66e3268d-a0fd-4c8b-bc1e-19651c1be020
userCondition: null
warning: null
width: 100
name: Content
uid: 83c65610-32d9-4018-b708-6b9a851152d9
userCondition: null
fields:
0e0fa14c-6984-4cad-b340-1646f92c60f9: # Label
columnSuffix: aiizbxrd
contentColumnType: text
fieldGroup: null
handle: label
instructions: null
name: Label
searchable: false
settings:
byteLimit: null
charLimit: null
code: false
columnType: null
initialRows: 4
multiline: false
placeholder: null
uiMode: normal
translationKeyFormat: null
translationMethod: none
type: craft\fields\PlainText
8ca8b2b9-c18c-43ae-8fda-4da2a908ebf1: # Background Color
columnSuffix: bucxvcbi
contentColumnType: string(9)
fieldGroup: null
handle: backgroundColor
instructions: null
name: 'Background Color'
searchable: false
settings:
columnType: null
options:
-
__assoc__:
-
- label
- 'Light Grey'
-
- value
- lightGrey
-
- default
- ''
-
__assoc__:
-
- label
- Grey
-
- value
- grey
-
- default
- '1'
translationKeyFormat: null
translationMethod: none
type: craft\fields\Dropdown
594a2aa6-6d44-4bee-91c4-0d24c5bdb3bb: # maxWidthLimit
columnSuffix: wgzynxoy
contentColumnType: string(13)
fieldGroup: null
handle: maxWidthLimit
instructions: null
name: maxWidthLimit
searchable: false
settings:
columnType: null
options:
-
__assoc__:
-
- label
- 'Yes'
-
- value
- maxWidthLimit
-
- default
- '1'
-
__assoc__:
-
- label
- 'No'
-
- value
- 'no'
-
- default
- ''
translationKeyFormat: null
translationMethod: none
type: craft\fields\Dropdown
88511bdb-a301-42e1-a34e-9e94961cdf23: # Slider
columnSuffix: null
contentColumnType: string
fieldGroup: null
handle: slider
instructions: null
name: Slider
searchable: false
settings:
blockTypeFields: 0
changedFieldIndicator: 494045521
columns:
__assoc__:
-
- e0b78a0d-f1f4-4ddb-bc91-055f2aac35eb # Text
-
__assoc__:
-
- width
- ''
-
- 80442797-395a-4aff-a605-589d241acabe # Image
-
__assoc__:
-
- width
- ''
contentTable: '{{%stc_5_slider}}'
fieldLayout: matrix
maxRows: null
minRows: null
propagationKeyFormat: null
propagationMethod: all
selectionLabel: null
staticField: null
translationKeyFormat: null
translationMethod: site
type: verbb\supertable\fields\SuperTableField
handle: slider
name: Slider
sortOrder: 3
field: 2e014bcb-5ee8-48d0-9e8c-33a881bda8f4 # Elements
fieldLayouts:
57b65e42-a52b-465e-81a2-a31e5dec6c19:
tabs:
-
elementCondition: null
elements:
-
elementCondition: null
fieldUid: 36798ac9-366e-41f9-b0b1-19fd0b3a0867 # Text
instructions: null
label: null
required: true
tip: null
type: craft\fieldlayoutelements\CustomField
uid: 431b94df-0fa9-4b3b-afcb-18e8c3a23802
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: 9a71e69a-bccf-4fba-a743-e3d846202492 # Max Width Limit
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: 18938066-97a5-4d17-bdc7-ebbe3f130717
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: 6e5fc1fa-0743-4b7f-aa15-b51445b4f5fa # Label
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: 1f848471-bcf5-4295-9470-513703150c8b
userCondition: null
warning: null
width: 100
-
elementCondition: null
fieldUid: 1e0bf02f-b552-4843-87cd-1eb00d803ecf # Background Color
instructions: null
label: null
required: false
tip: null
type: craft\fieldlayoutelements\CustomField
uid: 02efbd42-df7f-4f79-966d-13dc0ea4fb75
userCondition: null
warning: null
width: 100
name: Content
uid: 8befcb96-8e5e-4996-abda-bc82eefef667
userCondition: null
fields:
1e0bf02f-b552-4843-87cd-1eb00d803ecf: # Background Color
columnSuffix: osugmrdi
contentColumnType: string(9)
fieldGroup: null
handle: backgroundColor
instructions: null
name: 'Background Color'
searchable: false
settings:
columnType: null
options:
-
__assoc__:
-
- label
- 'Light Grey'
-
- value
- lightGrey
-
- default
- '1'
-
__assoc__:
-
- label
- Grey
-
- value
- grey
-
- default
- ''
translationKeyFormat: null
translationMethod: none
type: craft\fields\Dropdown
6e5fc1fa-0743-4b7f-aa15-b51445b4f5fa: # Label
columnSuffix: zlggidef
contentColumnType: text
fieldGroup: null
handle: label
instructions: null
name: Label
searchable: false
settings:
byteLimit: null
charLimit: null
code: false
columnType: null
initialRows: 4
multiline: false
placeholder: null
uiMode: normal
translationKeyFormat: null
translationMethod: none
type: craft\fields\PlainText
9a71e69a-bccf-4fba-a743-e3d846202492: # Max Width Limit
columnSuffix: imvtadvs
contentColumnType: string(13)
fieldGroup: null
handle: maxWidthLimit
instructions: null
name: 'Max Width Limit'
searchable: false
settings:
columnType: null
options:
-
__assoc__:
-
- label
- 'Yes'
-
- value
- maxWidthLimit
-
- default
- '1'
-
__assoc__:
-
- label
- 'No'
-
- value
- ''
-
- default
- ''
translationKeyFormat: null
translationMethod: none
type: craft\fields\Dropdown
36798ac9-366e-41f9-b0b1-19fd0b3a0867: # Text
columnSuffix: mupxlzcc
contentColumnType: text
fieldGroup: null
handle: text
instructions: null
name: Text
searchable: false
settings:
availableTransforms: ''
availableVolumes: '*'
columnType: text
configSelectionMode: choose
defaultTransform: ''
manualConfig: ''
purifierConfig: null
purifyHtml: true
redactorConfig: null
removeEmptyTags: false
removeInlineStyles: false
removeNbsp: false
showHtmlButtonForNonAdmins: true
showUnpermittedFiles: false
showUnpermittedVolumes: false
uiMode: enlarged
translationKeyFormat: null
translationMethod: site
type: craft\redactor\Field
handle: text
name: Text
sortOrder: 1
dateModified: 1706517941
dateModified: 1720618870
elementSources:
craft\elements\Asset:
-
......@@ -42,69 +42,33 @@ fs:
url: /assets
meta:
__names__:
0a3f98b5-f071-4d31-8e94-7635d5ac5711: 'Background Color' # Background Color
0d4e105e-2cdf-4ea0-a1b4-6ca09a9983dd: Headline # Headline
0e0fa14c-6984-4cad-b340-1646f92c60f9: Label # Label
01ceb8fd-9fd1-4844-976c-af71522cec3d: Label # Label
1e0bf02f-b552-4843-87cd-1eb00d803ecf: 'Background Color' # Background Color
2a1afa39-32e3-4f1f-8766-488817c00035: 'Background Color' # Background Color
2bc4df95-41a1-4200-b353-96b8a3327b7c: Projects # Projects
2e014bcb-5ee8-48d0-9e8c-33a881bda8f4: Elements # Elements
2f276d6c-86ef-467a-af14-2374b73b69f3: 'Rich text' # Rich text
3b4a40f1-a1d8-41f8-825e-c3c0eb6c708f: Headline # Headline
5a9a170c-9780-4162-ab56-dbf793656257: 'Short Description' # Short Description
05dc9bd4-e5a8-4538-b1d9-65653bbe99fc: En # En
6a8f437c-f040-4357-9376-d06d779f4b9d: 'Current Status' # Current Status
6e5fc1fa-0743-4b7f-aa15-b51445b4f5fa: Label # Label
7aa20c43-822b-4a4d-937e-e91605bdbb97: Label # Label
7b1be846-f335-4b1f-b5eb-7aebf5e47751: Label # Label
6ae442e6-bcd8-4f50-804b-51a2015946f0: 'Grid Layout' # Grid Layout
6c0b678d-d821-41b4-9a46-e1b709b6f46a: Image # Image
7f4300a5-5dd5-4144-9b87-1ad88188114f: 'Company Register Number' # Company Register Number
8ade1e09-014f-4414-8354-936e3a3516eb: News # News
8ca8b2b9-c18c-43ae-8fda-4da2a908ebf1: 'Background Color' # Background Color
8d8f99c1-6d5c-444d-b2be-536748581180: 'Company Info' # Company Info
9a71e69a-bccf-4fba-a743-e3d846202492: 'Max Width Limit' # Max Width Limit
9bdf424f-e0e6-45d7-9e84-f12bb23210e6: Slider # Slider
9f6f218e-6133-4095-bf95-f37cba729f73: 'Max Width Limit' # Max Width Limit
09f14279-5c24-4955-b2be-439a0ae44c85: 'Content Grid' # Content Grid
22adc7c4-d843-4d61-88c0-94e15180d3da: 'Image and Text' # Image and Text
33db6c0c-386a-4261-8730-96efed307516: Address # Address
39e3c841-c1e1-4650-ae19-b19ce6b234ff: Default # Default
39e79cd4-9bd8-4883-ada1-f4d648486fe2: 'Image And Text' # Image And Text
47af23ae-71fc-4e71-b6be-59db26789d35: News # News
47b72803-61d7-42f3-adce-a1fcb3ee1115: Projects # Projects
42cf1b22-b863-45f6-bb2d-ffecd1aa6474: 'Grid Item' # Grid Item
60dfd06d-f94f-4bcb-80a8-679d67062547: ved.at # ved.at
103cae2d-2d7d-43dd-b563-92b6ad45e7c4: Text # Text
274f2409-7af1-4e0f-8332-b8787dbb8dbf: Home # Home
379d162c-5979-483a-9582-29dc715f1932: ved.at # ved.at
486c1fd0-59d3-4e75-8949-264812aa6391: Href # Href
522ac542-6fdf-42d3-bc0d-09e198bd75f9: Image # Image
566ae2e9-84c0-413c-bc03-82ce2903658d: 'Max Width Limit' # Max Width Limit
594a2aa6-6d44-4bee-91c4-0d24c5bdb3bb: maxWidthLimit # maxWidthLimit
2501fb2c-2c71-43b6-93b0-b0b8ce8aff7d: 'Public Schema' # Public Schema
5742d887-cd6d-490d-8779-bed71db90e82: 'Background Color' # Background Color
8867d79b-6217-4d46-bcea-0a137dc84bb6: assets # assets
36798ac9-366e-41f9-b0b1-19fd0b3a0867: Text # Text
42532bd7-0e69-4993-98d9-a64bb02aa1d9: Impressum # Impressum
51182d09-919a-4d4e-a6bd-0f0bc0ecb631: Image # Image
80912b23-8107-4aaa-b423-054bb77022eb: Default # Default
88511bdb-a301-42e1-a34e-9e94961cdf23: Slider # Slider
50729c52-020b-4154-b8fb-82efa9df19fb: 'Public Schema' # Public Schema
92482c78-dfe2-44a0-955d-48132526b61f: Navigation # Navigation
195610f8-13df-4d94-8a80-25f88b30f837: Text # Text
536982f7-b3d5-4fa0-8f7d-61b000e3c46a: Default # Default
80442797-395a-4aff-a605-589d241acabe: Image # Image
a4f1b731-f97d-4920-8033-13ed068d7cdf: Nav # Nav
b6fcef38-d001-4b61-9d45-a1a088df18ba: 'Channel Types' # Channel Types
b60b3058-4c56-41a1-a364-795da4447e68: Text # Text
b8422f00-5252-4da9-b455-95d5ac4235af: Global # Global
b9666ace-985d-4553-97e3-cda91399f3a0: 'Content Grid' # Content Grid
bd600fbe-5b75-4222-97b8-75c5210b1bb2: 'Max Width Limit' # Max Width Limit
bdba3344-51c2-4e93-b740-2dfcd2133430: Headline # Headline
49813619-b92d-41f4-85aa-bf2839c85e3b: 'Background Color' # Background Color
91102642-b732-4602-aaaa-37216b816010: Grid # Grid
b99aa5c1-9239-4964-800e-10eea7ab7fd4: Grid # Grid
c5e3577f-b7c7-494e-ae09-37ac91f9403b: Label # Label
c6c05446-82c5-4f17-a715-6f08244c01f3: Home # Home
c34bc9d5-1143-432f-b2e9-be04e0f33194: Common # Common
d45c9db8-4931-4d1b-9e20-f0f2574904a7: 'Grid Layout' # Grid Layout
dc100381-7900-4977-9cb9-ca826016ec02: 'Max Width Limit' # Max Width Limit
e0b78a0d-f1f4-4ddb-bc91-055f2aac35eb: Text # Text
e4c6a38f-e4c3-45fa-b751-b3199bf5b2a7: 'Background Color' # Background Color
c14ac9b2-6fd7-4bd4-bd44-d20c3d4a481e: 'Max Width Limit' # Max Width Limit
ed35c68b-5c29-4512-92d6-18bf5283b995: Logo # Logo
f6c43733-7be4-4646-bcbe-98afacdf796e: Label # Label
f49ee3ef-7623-4f86-9e96-194ac32b7b25: Images # Images
fc534ca8-0fb4-4296-9a71-bb277a63a784: Impressum # Impressum
plugins:
......@@ -119,16 +83,10 @@ plugins:
super-table:
edition: standard
enabled: true
schemaVersion: 3.0.0
schemaVersion: 4.0.0
system:
edition: solo
live: true
name: ved.at
schemaVersion: 4.5.3.0
schemaVersion: 5.0.0.21
timeZone: America/Los_Angeles
users:
allowPublicRegistration: false
defaultGroup: null
photoSubpath: null
photoVolumeUid: null
requireEmailVerification: true
defaultPlacement: end
enableVersioning: true
entryTypes:
- c6c05446-82c5-4f17-a715-6f08244c01f3 # Home
handle: home
maxAuthors: 2
name: Home
propagationMethod: all
siteSettings:
05dc9bd4-e5a8-4538-b1d9-65653bbe99fc: # En
enabledByDefault: true
hasUrls: true
template: _singles/home
uriFormat: __home__
379d162c-5979-483a-9582-29dc715f1932: # ved.at
enabledByDefault: true
hasUrls: true
......
defaultPlacement: end
enableVersioning: true
handle: impressum
name: Impressum
propagationMethod: all
siteSettings:
379d162c-5979-483a-9582-29dc715f1932: # ved.at
enabledByDefault: true
hasUrls: true
template: _singles/subpage.twig
uriFormat: impressum
type: single
defaultPlacement: end
enableVersioning: true
handle: nav
name: Nav
propagationMethod: all
siteSettings:
05dc9bd4-e5a8-4538-b1d9-65653bbe99fc: # En
enabledByDefault: true
hasUrls: false
template: null
uriFormat: null
379d162c-5979-483a-9582-29dc715f1932: # ved.at
enabledByDefault: true
hasUrls: false
template: null
uriFormat: null
structure:
maxLevels: null
uid: 9cd4dde9-faf0-4603-aa6e-9d49bcb1c81b
type: structure
defaultPlacement: end
enableVersioning: true
handle: news
maxAuthors: 1
name: News
propagationMethod: all
siteSettings:
05dc9bd4-e5a8-4538-b1d9-65653bbe99fc: # En
enabledByDefault: true
hasUrls: true
template: news/_entry
uriFormat: 'news/{slug}'
379d162c-5979-483a-9582-29dc715f1932: # ved.at
enabledByDefault: true
hasUrls: true
......
defaultPlacement: end
enableVersioning: true
handle: projects
name: Projects
propagationMethod: all
siteSettings:
05dc9bd4-e5a8-4538-b1d9-65653bbe99fc: # En
enabledByDefault: true
hasUrls: true
template: projects/_entry
uriFormat: 'projects/{slug}'
379d162c-5979-483a-9582-29dc715f1932: # ved.at
enabledByDefault: true
hasUrls: true
template: projects/_entry
uriFormat: 'projects/{slug}'
type: channel
baseUrl: $PRIMARY_SITE_URL
enabled: true
handle: default
hasUrls: true
language: de
......
baseUrl: '@web/en'
enabled: '1'
handle: en
hasUrls: true
language: en
name: En
primary: false
siteGroup: 60dfd06d-f94f-4bcb-80a8-679d67062547 # ved.at
sortOrder: 2
allowPublicRegistration: false
defaultGroup: null
photoSubpath: null
photoVolumeUid: null
requireEmailVerification: true
File deleted
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment