diff --git a/CHANGELOG.md b/CHANGELOG.md index f6d591a..1afd313 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# 2024-03-08 + +- Switch to plone.distribution. [pbauer] + +- Add distribution voltodemo, use volto-light-theme and add some demo content. [pbauer] + +- Add distribution classicdemo and add easyform. [pbauer] + # 2024-02-23 - Run a single workflow for build and deploy, twice a day. [fredvd] diff --git a/backend/Makefile b/backend/Makefile index 8e17be9..f9e25bf 100644 --- a/backend/Makefile +++ b/backend/Makefile @@ -15,6 +15,10 @@ GREEN=`tput setaf 2` RESET=`tput sgr0` YELLOW=`tput setaf 3` +# Set distributions still in development +DISTRIBUTIONS="voltodemo" +ALLOWED_DISTRIBUTIONS="voltodemo" + PLONE_VERSION=6.0.10.1 BACKEND_FOLDER=$(shell dirname $(realpath $(firstword $(MAKEFILE_LIST)))) @@ -42,7 +46,7 @@ endif # version ok? PYTHON_VERSION_MIN=3.8 PYTHON_VERSION_OK=$(shell $(PYTHON) -c "import sys; print((int(sys.version_info[0]), int(sys.version_info[1])) >= tuple(map(int, '$(PYTHON_VERSION_MIN)'.split('.'))))") -ifeq ($(PYTHON_VERSION_OK),0) +ifeq ($(PYTHON_VERSION_OK),False) $(error "Need python $(PYTHON_VERSION) >= $(PYTHON_VERSION_MIN)") endif @@ -87,7 +91,7 @@ clean-test: ## remove test and coverage artifacts bin/pip: @echo "$(GREEN)==> Setup Virtual Env$(RESET)" $(PYTHON) -m venv . - bin/pip install -U "pip" "wheel" "cookiecutter" "mxdev" + bin/pip install -U "setuptools" "pip" "wheel" "cookiecutter" "mxdev" .PHONY: config config: bin/pip ## Create instance configuration @@ -150,8 +154,8 @@ test_quiet: ## run tests removing deprecation warnings PYTHONWARNINGS=ignore ./bin/zope-testrunner --auto-color --auto-progress --test-path src/plone6demo/src/ .PHONY: create-site -create-site: instance/etc/zope.ini ## Create a new site from scratch - PYTHONWARNINGS=ignore ./bin/zconsole run instance/etc/zope.conf ./scripts/create_site.py +create-site: ## Create a new site using default distribution and default answers + DEVELOP_DISTRIBUTIONS=$(DISTRIBUTIONS) ALLOWED_DISTRIBUTIONS=$(DISTRIBUTIONS) PYTHONWARNINGS=ignore ./bin/zconsole run instance/etc/zope.conf scripts/create-site.py .PHONY: start start: ## Start a Plone instance on localhost:8080 diff --git a/backend/instance.yaml b/backend/instance.yaml index 204096e..f72b8e1 100644 --- a/backend/instance.yaml +++ b/backend/instance.yaml @@ -2,7 +2,6 @@ default_context: initial_user_name: 'admin' initial_user_password: 'admin' - load_zcml: - package_includes: ['plone6demo'] + zcml_package_includes: 'plone6demo' db_storage: direct diff --git a/backend/scripts/create-site.py b/backend/scripts/create-site.py new file mode 100644 index 0000000..eebfbdb --- /dev/null +++ b/backend/scripts/create-site.py @@ -0,0 +1,98 @@ +from AccessControl.SecurityManagement import newSecurityManager +from pathlib import Path +from plone.distribution.api import site as site_api +from Testing.makerequest import makerequest + +import json +import logging +import os +import transaction + + +logging.basicConfig(format="%(message)s") + +# Silence some loggers +for logger_name in [ + "GenericSetup.componentregistry", + "Products.MimetypesRegistry.MimeTypesRegistry", +]: + logging.getLogger(logger_name).setLevel(logging.ERROR) + +logger = logging.getLogger("Plone Site Creation") +logger.setLevel(logging.DEBUG) + +SCRIPT_DIR = Path().cwd() / "scripts" + +truthy = frozenset(("t", "true", "y", "yes", "on", "1")) + + +def asbool(s): + """Return the boolean value ``True`` if the case-lowered value of string + input ``s`` is a :term:`truthy string`. If ``s`` is already one of the + boolean values ``True`` or ``False``, return it.""" + if s is None: + return False + if isinstance(s, bool): + return s + s = str(s).strip() + return s.lower() in truthy + + +app = makerequest(globals()["app"]) + +request = app.REQUEST + +admin = app.acl_users.getUserById("admin") +admin = admin.__of__(app.acl_users) +newSecurityManager(None, admin) + + +def get_answers_file() -> Path: + filename = f"{ANSWERS}.json" + return SCRIPT_DIR / filename + + +def parse_answers(answers_file: Path, site_id: str = "") -> dict: + answers = json.loads(answers_file.read_text()) + if "distribution" not in answers: + # This is a bug in plone.distribution and should be fixed there + answers["distribution"] = DISTRIBUTION + if site_id: + answers["site_id"] = site_id + return answers + + +# VARS +DISTRIBUTION = os.getenv("DISTRIBUTION", "voltodemo") +SITE_ID = os.getenv("SITE_ID") # if set, this overrides the value in ANSWERS +ANSWERS = os.getenv("ANSWERS", "default") +DELETE_EXISTING = asbool(os.getenv("DELETE_EXISTING")) + +# Load site creation parameters +answers_file = get_answers_file() +answers = parse_answers(answers_file, SITE_ID) +site_id = answers["site_id"] + + +logger.info(f"Creating a new Plone site @ {site_id}") +logger.info(f" - Using the {DISTRIBUTION} distribution and answers from {answers_file}") + + +if site_id in app.objectIds() and DELETE_EXISTING: + app.manage_delObjects([site_id]) + transaction.commit() + app._p_jar.sync() + logger.info(f" - Deleted existing site with id {site_id}") +else: + logger.info( + f" - Stopping site creation, as there is already a site with id {site_id}. " + "Set DELETE_EXISTING=1 to delete the existing site before creating a new one." + ) + +if site_id not in app.objectIds(): + site = site_api._create_site( + context=app, distribution_name=DISTRIBUTION, answers=answers + ) + transaction.commit() + app._p_jar.sync() + logger.info(" - Site created!") diff --git a/backend/scripts/create_site.py b/backend/scripts/create_site.py deleted file mode 100644 index b3a3c53..0000000 --- a/backend/scripts/create_site.py +++ /dev/null @@ -1,62 +0,0 @@ -from AccessControl.SecurityManagement import newSecurityManager -from plone6demo.interfaces import IPLONE6DEMOLayer -from Products.CMFPlone.factory import _DEFAULT_PROFILE -from Products.CMFPlone.factory import addPloneSite -from Testing.makerequest import makerequest -from zope.interface import directlyProvidedBy -from zope.interface import directlyProvides - -import os -import transaction - - -truthy = frozenset(("t", "true", "y", "yes", "on", "1")) - - -def asbool(s): - """Return the boolean value ``True`` if the case-lowered value of string - input ``s`` is a :term:`truthy string`. If ``s`` is already one of the - boolean values ``True`` or ``False``, return it.""" - if s is None: - return False - if isinstance(s, bool): - return s - s = str(s).strip() - return s.lower() in truthy - - -DELETE_EXISTING = asbool(os.getenv("DELETE_EXISTING")) - -app = makerequest(app) # noQA - -request = app.REQUEST - -ifaces = [ - IPLONE6DEMOLayer, -] + list(directlyProvidedBy(request)) - -directlyProvides(request, *ifaces) - -admin = app.acl_users.getUserById("admin") -admin = admin.__of__(app.acl_users) -newSecurityManager(None, admin) - -site_id = "Plone" -payload = { - "title": "Plone 6 Demo Site", - "profile_id": _DEFAULT_PROFILE, - "extension_ids": ["plone6demo:default", "plone6demo:initial", "plone.volto:demo"], - "setup_content": False, - "default_language": "en", - "portal_timezone": "America/Sao_Paulo", -} - -if site_id in app.objectIds() and DELETE_EXISTING: - app.manage_delObjects([site_id]) - transaction.commit() - app._p_jar.sync() - -if site_id not in app.objectIds(): - site = addPloneSite(app, site_id, **payload) - transaction.commit() - app._p_jar.sync() diff --git a/backend/scripts/default.json b/backend/scripts/default.json new file mode 100644 index 0000000..baf6d0a --- /dev/null +++ b/backend/scripts/default.json @@ -0,0 +1,8 @@ +{ + "site_id": "Plone", + "title": "Welcome to Plone 6", + "description": "Site created with a new Plone Distribution", + "default_language": "en", + "portal_timezone": "Europe/Berlin", + "setup_content": true +} \ No newline at end of file diff --git a/backend/src/plone6demo/setup.py b/backend/src/plone6demo/setup.py index bd247ce..6f268bd 100644 --- a/backend/src/plone6demo/setup.py +++ b/backend/src/plone6demo/setup.py @@ -1,4 +1,5 @@ """Installer for the plone6demo package.""" + from setuptools import find_packages from setuptools import setup @@ -22,9 +23,13 @@ "Framework :: Plone", "Framework :: Plone :: Addon", "Framework :: Plone :: 6.0", + "Framework :: Plone :: Distribution", "Programming Language :: Python", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Operating System :: OS Independent", "License :: OSI Approved :: GNU General Public License v2 (GPLv2)", ], @@ -46,8 +51,9 @@ install_requires=[ "setuptools", "Plone", - "prettyconf", "plone.api", + "plone.distribution", + "collective.volto.formsupport", ], extras_require={ "test": [ diff --git a/backend/src/plone6demo/src/plone6demo/configure.zcml b/backend/src/plone6demo/src/plone6demo/configure.zcml index 8f5b5c6..0c45c35 100644 --- a/backend/src/plone6demo/src/plone6demo/configure.zcml +++ b/backend/src/plone6demo/src/plone6demo/configure.zcml @@ -1,6 +1,7 @@ @@ -14,6 +15,10 @@ package="plone.behavior" file="meta.zcml" /> + @@ -28,4 +33,11 @@ + + diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/00cef5f245a342958288ace545e3c097-preview_image/black-starry-night.jpg b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/00cef5f245a342958288ace545e3c097-preview_image/black-starry-night.jpg new file mode 100644 index 0000000..f4ac0ac Binary files /dev/null and b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/00cef5f245a342958288ace545e3c097-preview_image/black-starry-night.jpg differ diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/05bace45294c45d5ab93de883e7ce702-image/penguin2.jpg b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/05bace45294c45d5ab93de883e7ce702-image/penguin2.jpg new file mode 100644 index 0000000..e208484 Binary files /dev/null and b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/05bace45294c45d5ab93de883e7ce702-image/penguin2.jpg differ diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/0c351dd841c34c6da9c313b1bc551e34-image/penguin4.jpg b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/0c351dd841c34c6da9c313b1bc551e34-image/penguin4.jpg new file mode 100644 index 0000000..f8f59b2 Binary files /dev/null and b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/0c351dd841c34c6da9c313b1bc551e34-image/penguin4.jpg differ diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/102f648399914851951ffa3fefc8665c-preview_image/black-starry-night.jpg b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/102f648399914851951ffa3fefc8665c-preview_image/black-starry-night.jpg new file mode 100644 index 0000000..f4ac0ac Binary files /dev/null and b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/102f648399914851951ffa3fefc8665c-preview_image/black-starry-night.jpg differ diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/2508797173824f0e9f82bb2e7cfe922d-preview_image/black-starry-night.jpg b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/2508797173824f0e9f82bb2e7cfe922d-preview_image/black-starry-night.jpg new file mode 100644 index 0000000..f4ac0ac Binary files /dev/null and b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/2508797173824f0e9f82bb2e7cfe922d-preview_image/black-starry-night.jpg differ diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/3906609d0456404ca7146f6aa1f12f32-preview_image/black-starry-night.jpg b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/3906609d0456404ca7146f6aa1f12f32-preview_image/black-starry-night.jpg new file mode 100644 index 0000000..f4ac0ac Binary files /dev/null and b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/3906609d0456404ca7146f6aa1f12f32-preview_image/black-starry-night.jpg differ diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/3ac4a2c6c4034a1686bc0ee2d2072fd6-preview_image/black-starry-night.jpg b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/3ac4a2c6c4034a1686bc0ee2d2072fd6-preview_image/black-starry-night.jpg new file mode 100644 index 0000000..f4ac0ac Binary files /dev/null and b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/3ac4a2c6c4034a1686bc0ee2d2072fd6-preview_image/black-starry-night.jpg differ diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/40a436ad604f4f80aeafe0977806760a-preview_image/black-starry-night.jpg b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/40a436ad604f4f80aeafe0977806760a-preview_image/black-starry-night.jpg new file mode 100644 index 0000000..f4ac0ac Binary files /dev/null and b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/40a436ad604f4f80aeafe0977806760a-preview_image/black-starry-night.jpg differ diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/6cca02c5580d4f7c865af74835ceab9d-image/danielle-barnes-kGNaS3lYCso-unsplash.jpg b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/6cca02c5580d4f7c865af74835ceab9d-image/danielle-barnes-kGNaS3lYCso-unsplash.jpg new file mode 100644 index 0000000..6785343 Binary files /dev/null and b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/6cca02c5580d4f7c865af74835ceab9d-image/danielle-barnes-kGNaS3lYCso-unsplash.jpg differ diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/7ab9c48ede33415fa2a66a99549c8f70-preview_image/black-starry-night.jpg b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/7ab9c48ede33415fa2a66a99549c8f70-preview_image/black-starry-night.jpg new file mode 100644 index 0000000..f4ac0ac Binary files /dev/null and b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/7ab9c48ede33415fa2a66a99549c8f70-preview_image/black-starry-night.jpg differ diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/7adc12f0e7604982a6cdcb9437bccf66-preview_image/event.svg b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/7adc12f0e7604982a6cdcb9437bccf66-preview_image/event.svg new file mode 100644 index 0000000..7a273b6 --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/7adc12f0e7604982a6cdcb9437bccf66-preview_image/event.svg @@ -0,0 +1,3 @@ + + + diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/7de78fea55354a29ad78b909efb07436-image/penguin3.jpg b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/7de78fea55354a29ad78b909efb07436-image/penguin3.jpg new file mode 100644 index 0000000..6d4e392 Binary files /dev/null and b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/7de78fea55354a29ad78b909efb07436-image/penguin3.jpg differ diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/8416628543f146ff9a18d281c03e2399-preview_image/black-starry-night.jpg b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/8416628543f146ff9a18d281c03e2399-preview_image/black-starry-night.jpg new file mode 100644 index 0000000..f4ac0ac Binary files /dev/null and b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/8416628543f146ff9a18d281c03e2399-preview_image/black-starry-night.jpg differ diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/928010d84e5d4df2b2282f3e179d6b1a-preview_image/black-starry-night.jpg b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/928010d84e5d4df2b2282f3e179d6b1a-preview_image/black-starry-night.jpg new file mode 100644 index 0000000..f4ac0ac Binary files /dev/null and b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/928010d84e5d4df2b2282f3e179d6b1a-preview_image/black-starry-night.jpg differ diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/970ec24c76784c66a06d8c8d8b6522b2-image/black-starry-night.jpg b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/970ec24c76784c66a06d8c8d8b6522b2-image/black-starry-night.jpg new file mode 100644 index 0000000..f4ac0ac Binary files /dev/null and b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/970ec24c76784c66a06d8c8d8b6522b2-image/black-starry-night.jpg differ diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/99c70917b6894af08dd306fdbc0eff6a-preview_image/black-starry-night.jpg b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/99c70917b6894af08dd306fdbc0eff6a-preview_image/black-starry-night.jpg new file mode 100644 index 0000000..f4ac0ac Binary files /dev/null and b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/99c70917b6894af08dd306fdbc0eff6a-preview_image/black-starry-night.jpg differ diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/9abc1a813bcf46388e565b277bd8c6bf-image/penguin1.jpg b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/9abc1a813bcf46388e565b277bd8c6bf-image/penguin1.jpg new file mode 100644 index 0000000..d42181a Binary files /dev/null and b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/9abc1a813bcf46388e565b277bd8c6bf-image/penguin1.jpg differ diff --git a/backend/src/plone6demo/src/plone6demo/setuphandlers/images/plone-foundation.png b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/a5bf990b119747c4b2855fedc1ea0185-image/image.png similarity index 100% rename from backend/src/plone6demo/src/plone6demo/setuphandlers/images/plone-foundation.png rename to backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/a5bf990b119747c4b2855fedc1ea0185-image/image.png diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/af85ff98cd6446eebcba56305ed89fed-image/sergio-martinez-rhNJJ4eD2zk-unsplash.jpg b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/af85ff98cd6446eebcba56305ed89fed-image/sergio-martinez-rhNJJ4eD2zk-unsplash.jpg new file mode 100644 index 0000000..6f9dc0e Binary files /dev/null and b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/af85ff98cd6446eebcba56305ed89fed-image/sergio-martinez-rhNJJ4eD2zk-unsplash.jpg differ diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/bd2b39d2745847db82ed197a4eb1effc-preview_image/black-starry-night.jpg b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/bd2b39d2745847db82ed197a4eb1effc-preview_image/black-starry-night.jpg new file mode 100644 index 0000000..f4ac0ac Binary files /dev/null and b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/bd2b39d2745847db82ed197a4eb1effc-preview_image/black-starry-night.jpg differ diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/eec82559bf3242a6be4d43bc2096f399-image/image-light.jpg b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/eec82559bf3242a6be4d43bc2096f399-image/image-light.jpg new file mode 100644 index 0000000..063c0b7 Binary files /dev/null and b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/blobs/eec82559bf3242a6be4d43bc2096f399-image/image-light.jpg differ diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/1.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/1.json new file mode 100644 index 0000000..bd538e1 --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/1.json @@ -0,0 +1,857 @@ +{ + "@id": "/Plone", + "@type": "Plone Site", + "UID": "87f1f0ea555d423698c3ce09e17d7873", + "allow_discussion": null, + "blocks": { + "03511c33-6c36-4135-a60a-0be82ccc7e8f": { + "@type": "slate", + "plaintext": "Happy hacking!", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Happy hacking!" + } + ], + "type": "h2" + } + ] + }, + "0ab1a8f7-2d26-4933-800c-2f10474afe63": { + "@type": "separator", + "styles": { + "align": "full" + } + }, + "0c91e9dd-842e-4764-a4f1-8a62c85b731a": { + "@type": "slate", + "plaintext": "\u2026protects and promotes Plone. \u2026is a registered 501(c)(3) charitable organization. \u2026donations are tax-deductible. Support the Foundation and help make Plone better! ", + "styles": {}, + "value": [ + { + "children": [ + { + "children": [ + { + "text": "\u2026protects and promotes Plone." + } + ], + "type": "li" + }, + { + "children": [ + { + "text": "\u2026is a registered 501(c)(3) charitable organization." + } + ], + "type": "li" + }, + { + "children": [ + { + "text": "\u2026donations are tax-deductible." + } + ], + "type": "li" + }, + { + "children": [ + { + "text": "" + }, + { + "children": [ + { + "text": "Support the Foundation and help make Plone better!" + } + ], + "data": { + "url": "https://plone.org/sponsors/be-a-hero" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "li" + } + ], + "type": "ul" + } + ] + }, + "0d0c0506-f9bb-48d8-af0a-1352d81b45de": { + "@type": "slate", + "plaintext": "Find out more about Plone", + "value": [ + { + "children": [ + { + "text": "Find out more about Plone" + } + ], + "type": "h2" + } + ] + }, + "2fac7e5d-affb-4a8e-969f-2fac4d08e0fd": { + "@type": "slate", + "plaintext": " The features of Plone Plone Documentation Plone Training Plone Community Forum Add-ons for Plone (backend) Add-ons for Volto (frontend) ", + "styles": {}, + "value": [ + { + "children": [ + { + "children": [ + { + "text": "" + }, + { + "children": [ + { + "text": "The features of Plone" + } + ], + "data": { + "url": "https://plone.org/why-plone/features" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "li" + }, + { + "children": [ + { + "text": "" + }, + { + "children": [ + { + "text": "Plone Documentation" + } + ], + "data": { + "url": "https://docs.plone.org/" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "li" + }, + { + "children": [ + { + "text": "" + }, + { + "children": [ + { + "text": "Plone Training" + } + ], + "data": { + "url": "https://training.plone.org/" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "li" + }, + { + "children": [ + { + "text": "" + }, + { + "children": [ + { + "text": "Plone Community Forum" + } + ], + "data": { + "url": "https://community.plone.org/" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "li" + }, + { + "children": [ + { + "text": "" + }, + { + "children": [ + { + "text": "Add-ons for Plone (backend)" + } + ], + "data": { + "url": "https://github.com/collective/awesome-plone#readme" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "li" + }, + { + "children": [ + { + "text": "" + }, + { + "children": [ + { + "text": "Add-ons for Volto (frontend)" + } + ], + "data": { + "url": "https://github.com/collective/awesome-volto#readme" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "li" + } + ], + "type": "ul" + } + ] + }, + "303984b4-693a-408f-83f7-5a88b243d7db": { + "@type": "slider", + "slides": [ + { + "@id": "b09f39ea-36c3-4f09-9a18-30aef3565a22", + "description": "You can log in and experience all features. ", + "flagAlign": "left", + "head_title": "Welcome to Plone 6", + "href": [ + { + "@id": "resolveuid/dbc92ee33e9a4fc18b03414b4989415e", + "@type": "Document", + "Description": "", + "Title": "Content", + "hasPreviewImage": null, + "head_title": null, + "image_field": "", + "title": "Content" + } + ], + "preview_image": [ + { + "@id": "resolveuid/9abc1a813bcf46388e565b277bd8c6bf", + "@type": "Image", + "CreationDate": "2024-03-07T12:29:54+01:00", + "Creator": "admin", + "Date": "2024-03-07T12:30:08+01:00", + "Description": "", + "EffectiveDate": "None", + "ExpirationDate": "None", + "ModificationDate": "2024-03-07T12:30:08+01:00", + "Subject": [], + "Title": "testimage", + "Type": "Bild", + "UID": "9abc1a813bcf46388e565b277bd8c6bf", + "author_name": null, + "cmf_uid": null, + "commentators": [], + "created": "2024-03-07T11:29:54+00:00", + "description": "", + "effective": "1969-12-30T23:00:00+00:00", + "end": null, + "exclude_from_nav": false, + "expires": "2499-12-30T23:00:00+00:00", + "getIcon": true, + "getId": "testimage.jpg", + "getObjSize": "2.0 MB", + "getPath": "/Plone/testimage.jpg", + "getRemoteUrl": null, + "getURL": "http://localhost:3000/testimage.jpg", + "hasPreviewImage": null, + "head_title": null, + "id": "testimage.jpg", + "image_field": "image", + "in_response_to": null, + "is_folderish": false, + "last_comment_date": null, + "listCreators": [ + "admin" + ], + "location": null, + "mime_type": "image/jpeg", + "modified": "2024-03-07T11:30:08+00:00", + "nav_title": null, + "portal_type": "Image", + "review_state": null, + "start": null, + "sync_uid": null, + "title": "testimage", + "total_comments": 0, + "type_title": "Bild" + } + ], + "title": "You can use this site to test Plone" + }, + { + "@id": "59d1d748-d722-4b15-8098-037bef1c99de", + "description": "Volto is your productivity booster.", + "flagAlign": "left", + "head_title": "Welcome to Volto", + "hideButton": true, + "href": [ + { + "@id": "resolveuid/dbc92ee33e9a4fc18b03414b4989415e", + "@type": "Document", + "Description": "", + "Title": "Content", + "hasPreviewImage": null, + "head_title": null, + "image_field": "", + "title": "Content" + } + ], + "preview_image": [ + { + "@id": "resolveuid/7de78fea55354a29ad78b909efb07436", + "@type": "Image", + "CreationDate": "2024-03-08T13:05:46+01:00", + "Creator": "admin", + "Date": "2024-03-08T13:05:46+01:00", + "Description": "", + "EffectiveDate": "None", + "ExpirationDate": "None", + "ModificationDate": "2024-03-08T13:05:46+01:00", + "Subject": [], + "Title": "penguin3.jpg", + "Type": "Bild", + "UID": "7de78fea55354a29ad78b909efb07436", + "author_name": null, + "cmf_uid": null, + "commentators": [], + "created": "2024-03-08T12:05:46+00:00", + "description": "", + "effective": "1969-12-30T23:00:00+00:00", + "end": null, + "exclude_from_nav": false, + "expires": "2499-12-30T23:00:00+00:00", + "getIcon": true, + "getId": "penguin3.jpg", + "getObjSize": "1.0 MB", + "getPath": "/Plone/images/penguin3.jpg", + "getRemoteUrl": null, + "getURL": "http://localhost:3000/images/penguin3.jpg", + "hasPreviewImage": null, + "head_title": null, + "id": "penguin3.jpg", + "image_field": "image", + "in_response_to": null, + "is_folderish": false, + "last_comment_date": null, + "listCreators": [ + "admin" + ], + "location": null, + "mime_type": "image/jpeg", + "modified": "2024-03-08T12:05:46+00:00", + "nav_title": null, + "portal_type": "Image", + "review_state": null, + "start": null, + "sync_uid": null, + "title": "penguin3.jpg", + "total_comments": 0, + "type_title": "Bild" + } + ], + "title": "Volto is the react frontend for Plone 6" + }, + { + "@id": "ef8ceecc-7c1d-4e0a-9b67-a56e7d03f6e3", + "description": "This theme makes it easy to create beautiful user experiences.", + "flagAlign": "left", + "head_title": "Welcome to Volto Light Theme", + "hideButton": true, + "href": [ + { + "@id": "resolveuid/dbc92ee33e9a4fc18b03414b4989415e", + "@type": "Document", + "Description": "", + "Title": "Content", + "hasPreviewImage": null, + "head_title": null, + "image_field": "", + "title": "Content" + } + ], + "preview_image": [ + { + "@id": "resolveuid/05bace45294c45d5ab93de883e7ce702", + "@type": "Image", + "CreationDate": "2024-03-08T13:05:46+01:00", + "Creator": "admin", + "Date": "2024-03-08T13:05:46+01:00", + "Description": "", + "EffectiveDate": "None", + "ExpirationDate": "None", + "ModificationDate": "2024-03-08T13:05:46+01:00", + "Subject": [], + "Title": "penguin2.jpg", + "Type": "Bild", + "UID": "05bace45294c45d5ab93de883e7ce702", + "author_name": null, + "cmf_uid": null, + "commentators": [], + "created": "2024-03-08T12:05:46+00:00", + "description": "", + "effective": "1969-12-30T23:00:00+00:00", + "end": null, + "exclude_from_nav": false, + "expires": "2499-12-30T23:00:00+00:00", + "getIcon": true, + "getId": "penguin2.jpg", + "getObjSize": "2.8 MB", + "getPath": "/Plone/images/penguin2.jpg", + "getRemoteUrl": null, + "getURL": "http://localhost:3000/images/penguin2.jpg", + "hasPreviewImage": null, + "head_title": null, + "id": "penguin2.jpg", + "image_field": "image", + "in_response_to": null, + "is_folderish": false, + "last_comment_date": null, + "listCreators": [ + "admin" + ], + "location": null, + "mime_type": "image/jpeg", + "modified": "2024-03-08T12:05:46+00:00", + "nav_title": null, + "portal_type": "Image", + "review_state": null, + "start": null, + "sync_uid": null, + "title": "penguin2.jpg", + "total_comments": 0, + "type_title": "Bild" + } + ], + "title": "You are enjoing our modern Volto Light Theme" + } + ], + "styles": {} + }, + "31561f88-873a-4277-8703-ba1183e58bf1": { + "@type": "system" + }, + "64cf1d03-fdd5-4cb0-9eb3-159ea2759d9d": { + "@type": "image", + "align": "center", + "alt": "", + "image_field": "image", + "size": "l", + "url": "resolveuid/a5bf990b119747c4b2855fedc1ea0185" + }, + "9567ae6d-191c-43f1-91cc-4288bbb98f88": { + "@type": "slate", + "plaintext": " Plone 6 (this site) Plone 6 Classic UI ", + "styles": {}, + "value": [ + { + "children": [ + { + "children": [ + { + "text": "" + }, + { + "children": [ + { + "text": "Plone 6 (this site)" + } + ], + "data": { + "url": "https://demo.plone.org/" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "li" + }, + { + "children": [ + { + "text": "" + }, + { + "children": [ + { + "text": "Plone 6 Classic UI" + } + ], + "data": { + "url": "https://classic.demo.plone.org/" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "li" + } + ], + "type": "ul" + } + ] + }, + "9e2de314-a99c-4e11-92bd-174301d01073": { + "@type": "slate", + "plaintext": "Plone is a powerful content management system built on a rock-solid application stack written in the Python and JavaScript programming languages.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Plone is a powerful content management system built on a rock-solid application stack written in the " + }, + { + "children": [ + { + "text": "Python" + } + ], + "type": "em" + }, + { + "text": " and " + }, + { + "children": [ + { + "text": "JavaScript" + } + ], + "type": "em" + }, + { + "text": " programming languages." + } + ], + "type": "p" + } + ] + }, + "bbfa53bd-b3c3-4dcd-88fc-3121fef5bb39": { + "@type": "title" + }, + "c187b31d-f521-4ebe-98ec-01f2247599b4": { + "@type": "slate", + "plaintext": "Technical Details", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Technical Details" + } + ], + "type": "h2" + } + ] + }, + "dd34a386-6054-4a91-83e0-c7b3a6f391cf": { + "@type": "slate", + "plaintext": "Support the Plone Foundation", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Support the Plone Foundation" + } + ], + "type": "h2" + } + ] + }, + "e972541f-b114-494b-a51e-cc8b11c8207d": { + "@type": "slate", + "plaintext": "More demo sites", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "More demo sites" + } + ], + "type": "h2" + } + ] + }, + "eadb0f33-16da-4974-9f87-69206f0a1db8": { + "@type": "slate", + "plaintext": "Plone is made possible only through the efforts of thousands of dedicated individuals and hundreds of companies. The Plone Foundation:", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Plone is made possible only through the efforts of thousands of dedicated individuals and hundreds of companies. The Plone Foundation:" + } + ], + "type": "p" + } + ] + }, + "fae599f3-e7d4-451b-a413-84355c796b7e": { + "@type": "gridBlock", + "blocks": { + "c9f92df8-81fd-4259-a149-5c8798735350": { + "@type": "slate", + "plaintext": " You can use this site to test Plone 6.\n Disclaimer : This instance is reset every night, so all changes will be lost afterwards.", + "value": [ + { + "children": [ + { + "text": "" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "strong" + }, + { + "text": "You can use this site to test Plone 6.\n" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "" + }, + { + "children": [ + { + "text": "Disclaimer" + } + ], + "type": "strong" + }, + { + "text": ": This instance is reset every night, so all changes will be lost afterwards." + } + ], + "type": "p" + } + ] + }, + "d105783c-fa27-4c92-a3d9-6323adbe5e72": { + "@type": "slate", + "plaintext": "This site uses some recommended add-ons :\n volto-light-theme and some blocks that are suitable to be used with it. volto-form-block ", + "value": [ + { + "children": [ + { + "text": "This site uses some recommended " + }, + { + "children": [ + { + "text": "add-ons" + } + ], + "type": "strong" + }, + { + "text": ":" + } + ], + "type": "p" + }, + { + "children": [ + { + "children": [ + { + "text": "" + }, + { + "children": [ + { + "text": "volto-light-theme" + } + ], + "data": { + "url": "https://github.com/kitconcept/volto-light-theme" + }, + "type": "link" + }, + { + "text": " and some blocks that are suitable to be used with it." + } + ], + "type": "li" + }, + { + "children": [ + { + "text": "" + }, + { + "children": [ + { + "text": "volto-form-block" + } + ], + "data": { + "url": "https://github.com/collective/volto-form-block" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "li" + } + ], + "type": "ul" + } + ] + }, + "d78b666f-b07b-4036-9853-efe6263515aa": { + "@type": "slate", + "plaintext": "You can log in and use it as an admin user using these credentials :\n\nusername: admin password: admin ", + "value": [ + { + "children": [ + { + "text": "You can log in and use it as an admin user using these " + }, + { + "children": [ + { + "text": "credentials" + } + ], + "type": "strong" + }, + { + "text": ":\n\nusername: " + }, + { + "children": [ + { + "text": "admin" + } + ], + "type": "strong" + }, + { + "text": "\npassword: " + }, + { + "children": [ + { + "text": "admin" + } + ], + "type": "strong" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + } + }, + "blocks_layout": { + "items": [ + "d78b666f-b07b-4036-9853-efe6263515aa", + "c9f92df8-81fd-4259-a149-5c8798735350", + "d105783c-fa27-4c92-a3d9-6323adbe5e72" + ] + }, + "styles": {} + } + }, + "blocks_layout": { + "items": [ + "bbfa53bd-b3c3-4dcd-88fc-3121fef5bb39", + "303984b4-693a-408f-83f7-5a88b243d7db", + "fae599f3-e7d4-451b-a413-84355c796b7e", + "03511c33-6c36-4135-a60a-0be82ccc7e8f", + "64cf1d03-fdd5-4cb0-9eb3-159ea2759d9d", + "e972541f-b114-494b-a51e-cc8b11c8207d", + "9567ae6d-191c-43f1-91cc-4288bbb98f88", + "0d0c0506-f9bb-48d8-af0a-1352d81b45de", + "9e2de314-a99c-4e11-92bd-174301d01073", + "2fac7e5d-affb-4a8e-969f-2fac4d08e0fd", + "dd34a386-6054-4a91-83e0-c7b3a6f391cf", + "eadb0f33-16da-4974-9f87-69206f0a1db8", + "0c91e9dd-842e-4764-a4f1-8a62c85b731a", + "0ab1a8f7-2d26-4933-800c-2f10474afe63", + "c187b31d-f521-4ebe-98ec-01f2247599b4", + "31561f88-873a-4277-8703-ba1183e58bf1" + ] + }, + "contributors": [], + "creators": [ + "admin" + ], + "description": "Site created with a new Plone Distribution", + "effective": null, + "exclude_from_nav": false, + "expires": null, + "id": "Plone", + "is_folderish": true, + "items_total": 5, + "language": "en", + "lock": { + "locked": false, + "stealable": true + }, + "parent": {}, + "review_state": null, + "rights": "", + "subjects": [], + "table_of_contents": null, + "title": "Welcome to Plone 6", + "type_title": "Plone Site" +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/10.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/10.json new file mode 100644 index 0000000..846a3aa --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/10.json @@ -0,0 +1,639 @@ +{ + "@id": "/block/grid-block/text", + "@type": "Document", + "UID": "fb086a3d1d3d4a9ebf9bc864d2172e79", + "allow_discussion": false, + "blocks": { + "044b3c74-9129-4bef-a640-8ce362697184": { + "@type": "gridBlock", + "blocks": { + "57a1cf38-0550-4929-a1d8-d2752b6f70d5": { + "@type": "slate", + "plaintext": "Text Title H2\nLorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit.", + "value": [ + { + "children": [ + { + "text": "Text Title H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit." + } + ], + "type": "p" + } + ] + }, + "5a3fd2f9-d6c7-422f-8727-6d569cb25cb5": { + "@type": "slate", + "plaintext": "Text Title H2\nLorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit.", + "value": [ + { + "children": [ + { + "text": "Text Title H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit." + } + ], + "type": "p" + } + ] + }, + "f7e0fe54-ecd9-4d1b-942c-8980c8d43430": { + "@type": "slate", + "plaintext": "Text Title H2\nLorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit.", + "value": [ + { + "children": [ + { + "text": "Text Title H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit." + } + ], + "type": "p" + } + ] + } + }, + "blocks_layout": { + "items": [ + "f7e0fe54-ecd9-4d1b-942c-8980c8d43430", + "5a3fd2f9-d6c7-422f-8727-6d569cb25cb5", + "57a1cf38-0550-4929-a1d8-d2752b6f70d5" + ] + }, + "styles": { + "backgroundColor": "grey" + } + }, + "07692b0f-bef2-41f3-8110-643380f599a1": { + "@type": "gridBlock", + "blocks": { + "019e7dd0-63b9-4421-8824-3544391e9b23": { + "@type": "slate", + "plaintext": "Text Title H2\nLorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in.", + "value": [ + { + "children": [ + { + "text": "Text Title H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in." + } + ], + "type": "p" + } + ] + }, + "103b3b0e-c54e-4d0a-bf84-6e28898260dd": { + "@type": "slate", + "plaintext": "Text Title H2\nLorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in.", + "value": [ + { + "children": [ + { + "text": "Text Title H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in." + } + ], + "type": "p" + } + ] + }, + "d5ce3bff-682f-4e98-8aa9-aa9e7617f539": { + "@type": "slate", + "plaintext": "Text Title H2\nLorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in.", + "value": [ + { + "children": [ + { + "text": "Text Title H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in." + } + ], + "type": "p" + } + ] + }, + "efa522c2-3ec8-46f2-b951-9310028b01ef": { + "@type": "slate", + "plaintext": "Text Title H2\nLorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in.", + "value": [ + { + "children": [ + { + "text": "Text Title H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in." + } + ], + "type": "p" + } + ] + } + }, + "blocks_layout": { + "items": [ + "d5ce3bff-682f-4e98-8aa9-aa9e7617f539", + "efa522c2-3ec8-46f2-b951-9310028b01ef", + "103b3b0e-c54e-4d0a-bf84-6e28898260dd", + "019e7dd0-63b9-4421-8824-3544391e9b23" + ] + }, + "styles": { + "backgroundColor": "grey" + } + }, + "0f49cd2b-8040-402c-abca-a16618460f9d": { + "@type": "gridBlock", + "blocks": { + "a601e49f-0062-4961-b6e5-2fc8ae69ade0": { + "@type": "slate", + "plaintext": "Text Title H2\nLorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "value": [ + { + "children": [ + { + "text": "Text Title H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi." + } + ], + "type": "p" + } + ] + } + }, + "blocks_layout": { + "items": [ + "a601e49f-0062-4961-b6e5-2fc8ae69ade0" + ] + }, + "headline": "Block Title", + "styles": {} + }, + "38d06a19-4a1c-44ed-a35f-e9ad0f665924": { + "@type": "gridBlock", + "blocks": { + "7747d6aa-691e-490c-883d-f37309f7bb32": { + "@type": "slate", + "plaintext": "Text Title H2\nLorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit.", + "value": [ + { + "children": [ + { + "text": "Text Title H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit. " + } + ], + "type": "p" + } + ] + }, + "81fea606-f9d3-45ef-a986-ab049ca31518": { + "@type": "slate", + "plaintext": "Text Title H2\nLorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit.", + "value": [ + { + "children": [ + { + "text": "Text Title H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit. " + } + ], + "type": "p" + } + ] + }, + "ff28017a-468d-49aa-828f-c78660cc7512": { + "@type": "slate", + "plaintext": "Text Title H2\nLorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit.", + "value": [ + { + "children": [ + { + "text": "Text Title H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit." + } + ], + "type": "p" + } + ] + } + }, + "blocks_layout": { + "items": [ + "7747d6aa-691e-490c-883d-f37309f7bb32", + "81fea606-f9d3-45ef-a986-ab049ca31518", + "ff28017a-468d-49aa-828f-c78660cc7512" + ] + }, + "styles": {} + }, + "828a7be1-0ab3-4663-9069-4581f5be63c1": { + "@type": "title" + }, + "92d23c58-9f96-45e7-8a37-bd7a788c90e7": { + "@type": "gridBlock", + "blocks": { + "509c81dc-d149-47b3-8b7d-f069c22d0b5c": { + "@type": "slate", + "plaintext": "Text Title H2\nLorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "value": [ + { + "children": [ + { + "text": "Text Title H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi." + } + ], + "type": "p" + } + ] + }, + "9d78a363-ad2f-4290-a2a7-be8e22a752be": { + "@type": "slate", + "plaintext": "Text Title H2\nLorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "value": [ + { + "children": [ + { + "text": "Text Title H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi." + } + ], + "type": "p" + } + ] + } + }, + "blocks_layout": { + "items": [ + "509c81dc-d149-47b3-8b7d-f069c22d0b5c", + "9d78a363-ad2f-4290-a2a7-be8e22a752be" + ] + }, + "styles": { + "backgroundColor": "grey" + } + }, + "bf39075e-2748-42ee-8a3f-bffef3d91bab": { + "@type": "gridBlock", + "blocks": { + "27729b85-84b3-4ee3-9017-270ff221b5d3": { + "@type": "slate", + "plaintext": "Text Title H2\nLorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in.", + "value": [ + { + "children": [ + { + "text": "Text Title H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in. " + } + ], + "type": "p" + } + ] + }, + "62df1ee5-4d5e-43e3-8698-96dd8a3c907c": { + "@type": "slate", + "plaintext": "Text Title H2\nLorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in.", + "value": [ + { + "children": [ + { + "text": "Text Title H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in. " + } + ], + "type": "p" + } + ] + }, + "748b88cf-888f-4044-bd0c-11db4dcd4499": { + "@type": "slate", + "plaintext": "Text Title H2\nLorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in.", + "value": [ + { + "children": [ + { + "text": "Text Title H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in. " + } + ], + "type": "p" + } + ] + }, + "f7f64a3c-ed24-4bfd-beac-15feeb1e5c65": { + "@type": "slate", + "plaintext": "Text Title H2\nLorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in.", + "value": [ + { + "children": [ + { + "text": "Text Title H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in. " + } + ], + "type": "p" + } + ] + } + }, + "blocks_layout": { + "items": [ + "748b88cf-888f-4044-bd0c-11db4dcd4499", + "62df1ee5-4d5e-43e3-8698-96dd8a3c907c", + "27729b85-84b3-4ee3-9017-270ff221b5d3", + "f7f64a3c-ed24-4bfd-beac-15feeb1e5c65" + ] + }, + "styles": {} + }, + "c43aa15d-13e2-4112-957a-a5b3477a3cbf": { + "@type": "gridBlock", + "blocks": { + "bad9a9d9-da28-4c62-885a-31d2171399ad": { + "@type": "slate", + "plaintext": "Text Title H2\nLorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "value": [ + { + "children": [ + { + "text": "Text Title H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi." + } + ], + "type": "p" + } + ] + } + }, + "blocks_layout": { + "items": [ + "bad9a9d9-da28-4c62-885a-31d2171399ad" + ] + }, + "headline": "Block Title", + "styles": { + "backgroundColor": "grey" + } + }, + "debb8187-e54f-4cad-8301-2343d65e2024": { + "@type": "gridBlock", + "blocks": { + "91cdc344-e34c-4387-b0d2-73962abc2559": { + "@type": "slate", + "plaintext": "Text Title H2\nLorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.\n", + "value": [ + { + "children": [ + { + "text": "Text Title H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi." + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "h2" + } + ] + }, + "b6d056e8-0f7f-453e-b8bc-ef97a654b48f": { + "@type": "slate", + "plaintext": "Text Title H2\nLorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "value": [ + { + "children": [ + { + "text": "Text Title H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi." + } + ], + "type": "p" + } + ] + } + }, + "blocks_layout": { + "items": [ + "b6d056e8-0f7f-453e-b8bc-ef97a654b48f", + "91cdc344-e34c-4387-b0d2-73962abc2559" + ] + }, + "styles": {} + } + }, + "blocks_layout": { + "items": [ + "828a7be1-0ab3-4663-9069-4581f5be63c1", + "0f49cd2b-8040-402c-abca-a16618460f9d", + "debb8187-e54f-4cad-8301-2343d65e2024", + "38d06a19-4a1c-44ed-a35f-e9ad0f665924", + "bf39075e-2748-42ee-8a3f-bffef3d91bab", + "c43aa15d-13e2-4112-957a-a5b3477a3cbf", + "92d23c58-9f96-45e7-8a37-bd7a788c90e7", + "044b3c74-9129-4bef-a640-8ce362697184", + "07692b0f-bef2-41f3-8110-643380f599a1" + ] + }, + "contributors": [], + "created": "2023-07-06T21:35:22+00:00", + "creators": [ + "admin" + ], + "description": "\nThe Grid block allows adding multi-column blocks. A grid block can contain between one and four columns of different blocks. Text, teasers, images and videos can be added in a grid block.", + "effective": "2023-07-06T18:35:00", + "exclude_from_nav": false, + "expires": null, + "id": "text", + "is_folderish": true, + "language": "en", + "layout": "document_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2023-09-22T14:39:53+00:00", + "parent": { + "@id": "/block/grid-block", + "@type": "Document", + "UID": "99c70917b6894af08dd306fdbc0eff6a", + "description": " The Grid block allows adding multi-column blocks. A grid block can contain between one and four columns of different blocks. Teasers and images can be added in a grid block.", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Grid", + "type_title": "Page" + }, + "preview_caption": null, + "preview_image": null, + "review_state": "published", + "rights": "", + "subjects": [], + "title": "Grid-Text block", + "type_title": "Page", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2023-07-06T21:35:22+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2023-07-06T21:35:22+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/11.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/11.json new file mode 100644 index 0000000..7a64343 --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/11.json @@ -0,0 +1,236 @@ +{ + "@id": "/block/heading-block", + "@type": "Document", + "UID": "2f69aa417e894fd3bf23d393287b369e", + "allow_discussion": false, + "blocks": { + "0126e819-d955-41c5-a736-2f0b5ffda8a1": { + "@type": "separator", + "styles": { + "align": "full" + } + }, + "06a960a6-795c-409d-a55f-94d5047e3514": { + "@type": "slate", + "plaintext": "Headline H2", + "value": [ + { + "children": [ + { + "text": "Headline H2" + } + ], + "type": "h2" + } + ] + }, + "1bedcc9d-1c02-44e8-bb8e-5c46d6c67d3d": { + "@type": "gridBlock", + "blocks": { + "882e7872-bcf3-4234-a510-d1cff6bf2f7f": { + "@type": "teaser", + "description": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "head_title": null, + "href": [ + { + "@id": "/content-types/page", + "@type": "Document", + "Description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "Title": "Page", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Page" + } + ], + "styles": { + "align": "left" + }, + "title": "Teaser Title H2" + } + }, + "blocks_layout": { + "items": [ + "882e7872-bcf3-4234-a510-d1cff6bf2f7f" + ] + }, + "headline": "Block Title", + "styles": {} + }, + "36960cee-ec85-458b-b0be-d2e7a5a41e5f": { + "@type": "introduction", + "plaintext": "Highlight Title H2\nLorem ipsum vitae elit libero, a pharetra augue. Nulla vitae elit libero, a pharetra augue. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Donec ullamcorper nulla non metus auctor fringilla. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Vestibulum id ligula porta felis euismod semper.", + "value": [ + { + "children": [ + { + "text": "Highlight Title H2 " + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Lorem ipsum vitae elit libero, a pharetra augue. Nulla vitae elit libero, a pharetra augue. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Donec ullamcorper nulla non metus auctor fringilla. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Vestibulum id ligula porta felis euismod semper." + } + ], + "type": "p" + } + ] + }, + "4a0352d5-89df-48aa-944e-7270e81351d4": { + "@type": "separator", + "styles": { + "align": "full", + "backgroundColor": "transparent", + "noLine": false + } + }, + "7a405d27-e5ca-426c-bca4-e40cc338f7ba": { + "@type": "slate", + "plaintext": "Headline H3", + "value": [ + { + "children": [ + { + "text": "Headline H3" + } + ], + "type": "h3" + } + ] + }, + "7ebc67e3-e666-43f4-9fce-5dc14f98834f": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi." + } + ], + "type": "p" + } + ] + }, + "b4691078-153d-451f-9b47-fa6f852a1e6c": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi." + } + ], + "type": "p" + } + ] + }, + "e328753b-d914-4bcb-8b8b-2d5060476efe": { + "@type": "separator", + "styles": { + "align": "full" + } + }, + "e58cca3c-95d4-4819-951d-48415706bf41": { + "@type": "title" + }, + "faabad67-4aa2-4774-a48c-b1accf288700": { + "@type": "introduction", + "plaintext": "Lorem ipsum vitae elit libero, a pharetra augue. Nulla vitae elit libero, a pharetra augue. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Donec ullamcorper nulla non metus auctor fringilla. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Vestibulum id ligula porta felis euismod semper.", + "value": [ + { + "children": [ + { + "text": "Lorem ipsum vitae elit libero, a pharetra augue. Nulla vitae elit libero, a pharetra augue. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Donec ullamcorper nulla non metus auctor fringilla. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Vestibulum id ligula porta felis euismod semper." + } + ], + "type": "p" + } + ] + }, + "fe637263-126e-4a7f-b4aa-36369c5155cc": { + "@type": "separator", + "styles": { + "align": "full" + } + } + }, + "blocks_layout": { + "items": [ + "e58cca3c-95d4-4819-951d-48415706bf41", + "4a0352d5-89df-48aa-944e-7270e81351d4", + "faabad67-4aa2-4774-a48c-b1accf288700", + "fe637263-126e-4a7f-b4aa-36369c5155cc", + "36960cee-ec85-458b-b0be-d2e7a5a41e5f", + "e328753b-d914-4bcb-8b8b-2d5060476efe", + "06a960a6-795c-409d-a55f-94d5047e3514", + "b4691078-153d-451f-9b47-fa6f852a1e6c", + "7a405d27-e5ca-426c-bca4-e40cc338f7ba", + "7ebc67e3-e666-43f4-9fce-5dc14f98834f", + "0126e819-d955-41c5-a736-2f0b5ffda8a1", + "1bedcc9d-1c02-44e8-bb8e-5c46d6c67d3d" + ] + }, + "contributors": [], + "created": "2023-07-06T21:35:08+00:00", + "creators": [ + "admin" + ], + "description": "\nThe heading block allows you to display headings to group multiple blocks under one topic.", + "effective": "2023-07-06T18:35:00", + "exclude_from_nav": false, + "expires": null, + "id": "heading-block", + "is_folderish": true, + "language": "en", + "layout": "document_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2023-09-30T07:05:29+00:00", + "parent": { + "@id": "/block", + "@type": "Document", + "UID": "425695d2b7cb47e69374d6f211f17e38", + "description": "", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Blocks", + "type_title": "Page" + }, + "preview_caption": null, + "preview_image": null, + "review_state": "published", + "rights": null, + "subjects": [], + "title": "Heading", + "type_title": "Page", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2023-07-06T21:35:08+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2023-07-06T21:35:08+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/12.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/12.json new file mode 100644 index 0000000..26911b3 --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/12.json @@ -0,0 +1,530 @@ +{ + "@id": "/block/highlight-block", + "@type": "Document", + "UID": "8416628543f146ff9a18d281c03e2399", + "allow_discussion": false, + "blocks": { + "25a0a1b5-3ce9-468f-8968-9a7f83ca4e53": { + "@type": "highlight", + "button": true, + "buttonLink": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "CreationDate": "2023-07-06T23:35:20+02:00", + "Creator": "admin", + "Date": "2023-07-06T18:35:00+02:00", + "Description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "EffectiveDate": "2023-07-06T18:35:00+02:00", + "ExpirationDate": "None", + "ModificationDate": "2023-09-22T16:25:49+02:00", + "Subject": [], + "Title": "Page", + "Type": "Page", + "UID": "7ab9c48ede33415fa2a66a99549c8f70", + "author_name": null, + "cmf_uid": null, + "commentators": [], + "created": "2023-07-06T21:35:20+00:00", + "description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "effective": "2023-07-06T16:35:00+00:00", + "end": null, + "exclude_from_nav": false, + "expires": "2499-12-30T22:00:00+00:00", + "getIcon": null, + "getId": "page", + "getObjSize": "676.8 KB", + "getPath": "/Plone/content-types/page", + "getRemoteUrl": null, + "getURL": "http://localhost:8080/Plone/content-types/page", + "hasPreviewImage": true, + "head_title": null, + "id": "page", + "image_field": "preview_image", + "in_response_to": null, + "is_folderish": true, + "last_comment_date": null, + "listCreators": [ + "admin" + ], + "location": null, + "mime_type": "text/plain", + "modified": "2023-09-22T14:25:49+00:00", + "nav_title": null, + "portal_type": "Document", + "review_state": "published", + "start": null, + "sync_uid": null, + "title": "Page", + "total_comments": 0, + "type_title": "Page" + } + ], + "buttonText": "Button ", + "image_field": "image", + "plaintext": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt.", + "styles": { + "descriptionColor": "highlight-custom-color-4" + }, + "title": "Highlight-Block", + "url": "../../resolveuid/970ec24c76784c66a06d8c8d8b6522b2", + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet, " + }, + { + "children": [ + { + "text": "consetetur sadipscing" + } + ], + "data": { + "url": "http://host.docker.internal:8080/Plone/block/button-block" + }, + "type": "link" + }, + { + "text": " elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt." + } + ], + "type": "p" + } + ] + }, + "417e7343-af04-4da4-96bf-29321a3e0fc6": { + "@type": "highlight", + "button": true, + "buttonLink": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "CreationDate": "2023-07-06T23:35:20+02:00", + "Creator": "admin", + "Date": "2023-07-06T18:35:00+02:00", + "Description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "EffectiveDate": "2023-07-06T18:35:00+02:00", + "ExpirationDate": "None", + "ModificationDate": "2023-09-22T16:25:49+02:00", + "Subject": [], + "Title": "Page", + "Type": "Page", + "UID": "7ab9c48ede33415fa2a66a99549c8f70", + "author_name": null, + "cmf_uid": null, + "commentators": [], + "created": "2023-07-06T21:35:20+00:00", + "description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "effective": "2023-07-06T16:35:00+00:00", + "end": null, + "exclude_from_nav": false, + "expires": "2499-12-30T22:00:00+00:00", + "getIcon": null, + "getId": "page", + "getObjSize": "676.8 KB", + "getPath": "/Plone/content-types/page", + "getRemoteUrl": null, + "getURL": "http://localhost:8080/Plone/content-types/page", + "hasPreviewImage": true, + "head_title": null, + "id": "page", + "image_field": "preview_image", + "in_response_to": null, + "is_folderish": true, + "last_comment_date": null, + "listCreators": [ + "admin" + ], + "location": null, + "mime_type": "text/plain", + "modified": "2023-09-22T14:25:49+00:00", + "nav_title": null, + "portal_type": "Document", + "review_state": "published", + "start": null, + "sync_uid": null, + "title": "Page", + "total_comments": 0, + "type_title": "Page" + } + ], + "buttonText": "Button ", + "image_field": "image", + "plaintext": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt.", + "styles": { + "descriptionColor": "highlight-custom-color-2" + }, + "title": "Highlight-Block", + "url": "../../resolveuid/970ec24c76784c66a06d8c8d8b6522b2", + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet, " + }, + { + "children": [ + { + "text": "consetetur sadipscing" + } + ], + "data": { + "url": "http://host.docker.internal:8080/Plone/block/button-block" + }, + "type": "link" + }, + { + "text": " elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt." + } + ], + "type": "p" + } + ] + }, + "67a6a73a-5ae7-4e14-a11b-bd0139e56513": { + "@type": "highlight", + "button": true, + "buttonLink": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "CreationDate": "2023-07-06T23:35:20+02:00", + "Creator": "admin", + "Date": "2023-07-06T18:35:00+02:00", + "Description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "EffectiveDate": "2023-07-06T18:35:00+02:00", + "ExpirationDate": "None", + "ModificationDate": "2023-09-22T16:25:49+02:00", + "Subject": [], + "Title": "Page", + "Type": "Page", + "UID": "7ab9c48ede33415fa2a66a99549c8f70", + "author_name": null, + "cmf_uid": null, + "commentators": [], + "created": "2023-07-06T21:35:20+00:00", + "description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "effective": "2023-07-06T16:35:00+00:00", + "end": null, + "exclude_from_nav": false, + "expires": "2499-12-30T22:00:00+00:00", + "getIcon": null, + "getId": "page", + "getObjSize": "676.8 KB", + "getPath": "/Plone/content-types/page", + "getRemoteUrl": null, + "getURL": "http://localhost:8080/Plone/content-types/page", + "hasPreviewImage": true, + "head_title": null, + "id": "page", + "image_field": "preview_image", + "in_response_to": null, + "is_folderish": true, + "last_comment_date": null, + "listCreators": [ + "admin" + ], + "location": null, + "mime_type": "text/plain", + "modified": "2023-09-22T14:25:49+00:00", + "nav_title": null, + "portal_type": "Document", + "review_state": "published", + "start": null, + "sync_uid": null, + "title": "Page", + "total_comments": 0, + "type_title": "Page" + } + ], + "buttonText": "Button ", + "image_field": "image", + "plaintext": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt.", + "styles": { + "descriptionColor": "highlight-custom-color-3" + }, + "title": "Highlight-Block", + "url": "../../resolveuid/970ec24c76784c66a06d8c8d8b6522b2", + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet, " + }, + { + "children": [ + { + "text": "consetetur sadipscing" + } + ], + "data": { + "url": "http://host.docker.internal:8080/Plone/block/button-block" + }, + "type": "link" + }, + { + "text": " elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt." + } + ], + "type": "p" + } + ] + }, + "8d932379-1247-4281-bd30-dfecd5b3c378": { + "@type": "highlight", + "button": true, + "buttonLink": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "CreationDate": "2023-07-06T23:35:20+02:00", + "Creator": "admin", + "Date": "2023-07-06T18:35:00+02:00", + "Description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "EffectiveDate": "2023-07-06T18:35:00+02:00", + "ExpirationDate": "None", + "ModificationDate": "2023-09-22T16:25:49+02:00", + "Subject": [], + "Title": "Page", + "Type": "Page", + "UID": "7ab9c48ede33415fa2a66a99549c8f70", + "author_name": null, + "cmf_uid": null, + "commentators": [], + "created": "2023-07-06T21:35:20+00:00", + "description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "effective": "2023-07-06T16:35:00+00:00", + "end": null, + "exclude_from_nav": false, + "expires": "2499-12-30T22:00:00+00:00", + "getIcon": null, + "getId": "page", + "getObjSize": "676.8 KB", + "getPath": "/Plone/content-types/page", + "getRemoteUrl": null, + "getURL": "http://localhost:8080/Plone/content-types/page", + "hasPreviewImage": true, + "head_title": null, + "id": "page", + "image_field": "preview_image", + "in_response_to": null, + "is_folderish": true, + "last_comment_date": null, + "listCreators": [ + "admin" + ], + "location": null, + "mime_type": "text/plain", + "modified": "2023-09-22T14:25:49+00:00", + "nav_title": null, + "portal_type": "Document", + "review_state": "published", + "start": null, + "sync_uid": null, + "title": "Page", + "total_comments": 0, + "type_title": "Page" + } + ], + "buttonText": "Button ", + "image_field": "image", + "plaintext": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt.", + "styles": { + "descriptionColor": "highlight-custom-color-1" + }, + "title": "Highlight-Block", + "url": "../../resolveuid/970ec24c76784c66a06d8c8d8b6522b2", + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet, " + }, + { + "children": [ + { + "text": "consetetur sadipscing" + } + ], + "data": { + "url": "http://host.docker.internal:8080/Plone/block/button-block" + }, + "type": "link" + }, + { + "text": " elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt." + } + ], + "type": "p" + } + ] + }, + "94655cc3-817d-48ba-bc20-6e9f7796dc46": { + "@type": "highlight", + "button": true, + "buttonLink": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "CreationDate": "2023-07-06T23:35:20+02:00", + "Creator": "admin", + "Date": "2023-07-06T18:35:00+02:00", + "Description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "EffectiveDate": "2023-07-06T18:35:00+02:00", + "ExpirationDate": "None", + "ModificationDate": "2023-09-22T16:25:49+02:00", + "Subject": [], + "Title": "Page", + "Type": "Page", + "UID": "7ab9c48ede33415fa2a66a99549c8f70", + "author_name": null, + "cmf_uid": null, + "commentators": [], + "created": "2023-07-06T21:35:20+00:00", + "description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "effective": "2023-07-06T16:35:00+00:00", + "end": null, + "exclude_from_nav": false, + "expires": "2499-12-30T22:00:00+00:00", + "getIcon": null, + "getId": "page", + "getObjSize": "676.8 KB", + "getPath": "/Plone/content-types/page", + "getRemoteUrl": null, + "getURL": "http://localhost:8080/Plone/content-types/page", + "hasPreviewImage": true, + "head_title": null, + "id": "page", + "image_field": "preview_image", + "in_response_to": null, + "is_folderish": true, + "last_comment_date": null, + "listCreators": [ + "admin" + ], + "location": null, + "mime_type": "text/plain", + "modified": "2023-09-22T14:25:49+00:00", + "nav_title": null, + "portal_type": "Document", + "review_state": "published", + "start": null, + "sync_uid": null, + "title": "Page", + "total_comments": 0, + "type_title": "Page" + } + ], + "buttonText": "Button ", + "image_field": "image", + "plaintext": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt.", + "styles": { + "descriptionColor": "highlight-custom-color-5" + }, + "title": "Highlight-Block", + "url": "../../resolveuid/970ec24c76784c66a06d8c8d8b6522b2", + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet, " + }, + { + "children": [ + { + "text": "consetetur sadipscing" + } + ], + "data": { + "url": "http://host.docker.internal:8080/Plone/block/button-block" + }, + "type": "link" + }, + { + "text": " elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt." + } + ], + "type": "p" + } + ] + }, + "af3c704a-1f80-48c8-843b-dc29368d43d9": { + "@type": "title" + } + }, + "blocks_layout": { + "items": [ + "af3c704a-1f80-48c8-843b-dc29368d43d9", + "8d932379-1247-4281-bd30-dfecd5b3c378", + "417e7343-af04-4da4-96bf-29321a3e0fc6", + "67a6a73a-5ae7-4e14-a11b-bd0139e56513", + "25a0a1b5-3ce9-468f-8968-9a7f83ca4e53", + "94655cc3-817d-48ba-bc20-6e9f7796dc46" + ] + }, + "contributors": [], + "created": "2023-07-06T21:35:08+00:00", + "creators": [ + "admin" + ], + "description": "\nThe highlight block allows you to highlight and tease a single piece of content. The content is displayed with a large image and a title and description in a banderole.", + "effective": "2023-07-06T18:35:00", + "exclude_from_nav": false, + "expires": null, + "id": "highlight-block", + "is_folderish": true, + "language": "en", + "layout": "document_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2024-03-08T14:27:13+00:00", + "parent": { + "@id": "/block", + "@type": "Document", + "UID": "425695d2b7cb47e69374d6f211f17e38", + "description": "", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Blocks", + "type_title": "Page" + }, + "preview_caption": null, + "preview_image": { + "blob_path": "blobs/8416628543f146ff9a18d281c03e2399-preview_image/black-starry-night.jpg", + "content-type": "image/jpeg", + "filename": "black-starry-night.jpg", + "height": 1708, + "size": 693013, + "width": 2400 + }, + "review_state": "published", + "rights": "", + "subjects": [], + "title": "Highlight", + "type_title": "Page", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2023-07-06T21:35:08+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2023-07-06T21:35:08+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/13.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/13.json new file mode 100644 index 0000000..791b011 --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/13.json @@ -0,0 +1,295 @@ +{ + "@id": "/block/image-block", + "@type": "Document", + "UID": "40a436ad604f4f80aeafe0977806760a", + "allow_discussion": false, + "blocks": { + "0f4f3139-9386-4023-9c50-add562acab5d": { + "@type": "image", + "align": "full", + "credit": {}, + "description": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.", + "size": "l", + "title": "Headline H2", + "url": "/content-types/image" + }, + "1bf3b6c3-8db1-4293-9088-00d1c5b8c91c": { + "@type": "image", + "align": "center", + "credit": {}, + "description": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit ata sanctus est Lorem ipsum dolor sit amet.", + "size": "l", + "title": "Headline H2", + "url": "/content-types/image" + }, + "3b647cba-a65f-4d55-9a50-9c8b37c52372": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.", + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet." + } + ], + "type": "p" + } + ] + }, + "44bc28fb-2431-46c8-9c1f-ec09cde7dae5": { + "@type": "slate", + "plaintext": "The Bild-Block can be aligned to the left with text floating around it on the right side.", + "value": [ + { + "children": [ + { + "text": "The Bild-Block can be aligned to the left with text floating around it on the right side." + } + ], + "type": "p" + } + ] + }, + "4bfc973c-5fbf-45a3-819a-750a3eff4def": { + "@type": "title" + }, + "5ea2e916-7224-43ad-adc8-7bd6b4fadf53": { + "@type": "slate", + "plaintext": "Bild-Block (Align Right)", + "value": [ + { + "children": [ + { + "text": "Bild-Block (Align Right)" + } + ], + "type": "h2" + } + ] + }, + "961969c7-1292-4c3e-bf4f-557fb87f4342": { + "@type": "slate", + "plaintext": "Bild-Block (Align: Left)", + "value": [ + { + "children": [ + { + "text": "Bild-Block (Align: Left)" + } + ], + "type": "h2" + } + ] + }, + "b6bf35d7-7536-4a32-9821-4ae209de88fe": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.", + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua." + } + ], + "type": "p" + } + ] + }, + "b7d57c29-c082-4b41-b6e0-7ccf83d46b97": { + "@type": "image", + "align": "right", + "credit": {}, + "description": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.", + "size": "l", + "title": "Headline H2", + "url": "/content-types/image" + }, + "bcc07f9d-7f53-450a-b3f4-20286fd66692": { + "@type": "image", + "align": "wide", + "credit": {}, + "description": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.", + "size": "l", + "title": "Headline H2", + "url": "/content-types/image" + }, + "bd53c8f5-d1eb-49e1-ac9d-463e0c50d4ce": { + "@type": "slate", + "plaintext": "The Bild-Block can be aligned to the right with text floating around it on the left side.", + "value": [ + { + "children": [ + { + "text": "The Bild-Block can be aligned to the right with text floating around it on the left side." + } + ], + "type": "p" + } + ] + }, + "c4eddbb6-cb34-479f-bf35-52adc6dd0f4e": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.", + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet." + } + ], + "type": "p" + } + ] + }, + "cd47ee9d-014f-4726-ad87-91d35b6f5231": { + "@type": "slate", + "plaintext": "Bild-Block (Align: center)", + "value": [ + { + "children": [ + { + "text": "Bild-Block (Align: center)" + } + ], + "type": "h2" + } + ] + }, + "d48b2411-07fd-4911-8185-56e8760abab5": { + "@type": "image", + "align": "left", + "credit": {}, + "description": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. ", + "size": "l", + "title": "Headline H2", + "url": "/content-types/image" + }, + "e68341fb-401f-4a19-84e9-ae1dc73db915": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.", + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet." + } + ], + "type": "p" + } + ] + }, + "e8178fee-0fb3-405d-8c81-cf47c1d2139f": { + "@type": "slate", + "plaintext": "Bild-Block (Full Width )", + "value": [ + { + "children": [ + { + "text": "Bild-Block (Full Width )" + } + ], + "type": "h2" + } + ] + }, + "ed863393-7692-4cc3-8b39-503591d4ea80": { + "@type": "slate", + "plaintext": "Bild-block (Standard Size)", + "value": [ + { + "children": [ + { + "text": "Bild-block (Standard Size)" + } + ], + "type": "h2" + } + ] + } + }, + "blocks_layout": { + "items": [ + "4bfc973c-5fbf-45a3-819a-750a3eff4def", + "ed863393-7692-4cc3-8b39-503591d4ea80", + "bcc07f9d-7f53-450a-b3f4-20286fd66692", + "e8178fee-0fb3-405d-8c81-cf47c1d2139f", + "3b647cba-a65f-4d55-9a50-9c8b37c52372", + "0f4f3139-9386-4023-9c50-add562acab5d", + "cd47ee9d-014f-4726-ad87-91d35b6f5231", + "e68341fb-401f-4a19-84e9-ae1dc73db915", + "1bf3b6c3-8db1-4293-9088-00d1c5b8c91c", + "961969c7-1292-4c3e-bf4f-557fb87f4342", + "44bc28fb-2431-46c8-9c1f-ec09cde7dae5", + "d48b2411-07fd-4911-8185-56e8760abab5", + "c4eddbb6-cb34-479f-bf35-52adc6dd0f4e", + "5ea2e916-7224-43ad-adc8-7bd6b4fadf53", + "bd53c8f5-d1eb-49e1-ac9d-463e0c50d4ce", + "b7d57c29-c082-4b41-b6e0-7ccf83d46b97", + "b6bf35d7-7536-4a32-9821-4ae209de88fe" + ] + }, + "contributors": [], + "created": "2023-07-06T21:35:19+00:00", + "creators": [ + "admin" + ], + "description": "\nThe image block allows images to be embedded in various display formats. Images can be displayed in different sizes (100%, L, M, S) and aligned left, right or center of the text flow.", + "effective": "2023-07-06T18:35:00", + "exclude_from_nav": false, + "expires": null, + "id": "image-block", + "is_folderish": true, + "language": "en", + "layout": "document_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2023-09-22T14:40:52+00:00", + "parent": { + "@id": "/block", + "@type": "Document", + "UID": "425695d2b7cb47e69374d6f211f17e38", + "description": "", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Blocks", + "type_title": "Page" + }, + "preview_caption": null, + "preview_image": { + "blob_path": "blobs/40a436ad604f4f80aeafe0977806760a-preview_image/black-starry-night.jpg", + "content-type": "image/jpeg", + "filename": "black-starry-night.jpg", + "height": 1708, + "size": 693013, + "width": 2400 + }, + "review_state": "published", + "rights": "", + "subjects": [], + "title": "Image", + "type_title": "Page", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2023-07-06T21:35:19+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2023-07-06T21:35:19+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/14.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/14.json new file mode 100644 index 0000000..ca01907 --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/14.json @@ -0,0 +1,148 @@ +{ + "@id": "/block/introduction-block", + "@type": "Document", + "UID": "00cef5f245a342958288ace545e3c097", + "allow_discussion": false, + "blocks": { + "177de529-ce72-4721-a58c-15feadaf285e": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi." + } + ], + "type": "p" + } + ] + }, + "26accd80-9715-43ea-9b7c-aa0b3be7d0da": { + "@type": "slate", + "plaintext": "Headline H2", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Headline H2" + } + ], + "type": "h2" + } + ] + }, + "50727b9a-1f8a-4857-aab5-8acc6985bfc6": { + "@type": "title" + }, + "cec08900-0334-4288-9ece-f5d15d4dd6f1": { + "@type": "separator", + "styles": { + "align": "full" + } + }, + "d0438a28-aaaf-4db1-8887-c9b3351787d3": { + "@type": "separator", + "styles": { + "align": "full" + } + }, + "d35f209e-12c1-4a30-ae36-52f84a4a0b7b": { + "@type": "introduction", + "plaintext": "Highlight Title H2\nLorem ipsum vitae elit libero, a pharetra augue. Nulla vitae elit libero, a pharetra augue. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Donec ullamcorper nulla non metus auctor fringilla. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Vestibulum id ligula porta felis euismod semper.", + "value": [ + { + "children": [ + { + "text": "Highlight Title H2 " + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Lorem ipsum vitae elit libero, a pharetra augue. Nulla vitae elit libero, a pharetra augue. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Donec ullamcorper nulla non metus auctor fringilla. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Vestibulum id ligula porta felis euismod semper." + } + ], + "type": "p" + } + ] + } + }, + "blocks_layout": { + "items": [ + "50727b9a-1f8a-4857-aab5-8acc6985bfc6", + "d0438a28-aaaf-4db1-8887-c9b3351787d3", + "d35f209e-12c1-4a30-ae36-52f84a4a0b7b", + "cec08900-0334-4288-9ece-f5d15d4dd6f1", + "26accd80-9715-43ea-9b7c-aa0b3be7d0da", + "177de529-ce72-4721-a58c-15feadaf285e" + ] + }, + "contributors": [], + "created": "2023-07-06T21:35:19+00:00", + "creators": [ + "admin" + ], + "description": "\nThe introductory block allows the display of an introductory text, which is displayed larger than normal continuous text.", + "effective": "2023-07-06T18:35:00", + "exclude_from_nav": false, + "expires": null, + "id": "introduction-block", + "is_folderish": true, + "language": "en", + "layout": "document_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2023-09-22T14:41:12+00:00", + "parent": { + "@id": "/block", + "@type": "Document", + "UID": "425695d2b7cb47e69374d6f211f17e38", + "description": "", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Blocks", + "type_title": "Page" + }, + "preview_caption": null, + "preview_image": { + "blob_path": "blobs/00cef5f245a342958288ace545e3c097-preview_image/black-starry-night.jpg", + "content-type": "image/jpeg", + "filename": "black-starry-night.jpg", + "height": 1708, + "size": 693013, + "width": 2400 + }, + "review_state": "published", + "rights": "", + "subjects": [], + "title": "Introduction", + "type_title": "Page", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2023-07-06T21:35:19+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2023-07-06T21:35:19+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/15.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/15.json new file mode 100644 index 0000000..a6303a7 --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/15.json @@ -0,0 +1,195 @@ +{ + "@id": "/block/listing-block", + "@type": "Document", + "UID": "6bd32a3367ea4254b295db642655b9d3", + "allow_discussion": false, + "blocks": { + "24280e07-e962-4414-8ee5-cdaf58ca5f35": { + "@type": "listing", + "block": "24280e07-e962-4414-8ee5-cdaf58ca5f35", + "headline": "Listing: Default", + "headlineTag": "h2", + "query": [], + "querystring": { + "b_size": "4", + "limit": "10", + "query": [ + { + "i": "portal_type", + "o": "plone.app.querystring.operation.selection.any", + "v": [ + "Document" + ] + }, + { + "i": "Subject", + "o": "plone.app.querystring.operation.selection.none", + "v": [ + "main folder" + ] + } + ], + "sort_on": "getId", + "sort_order": "ascending" + }, + "styles": { + "backgroundColor": "transparent" + }, + "variation": "default" + }, + "2a597dde-dd2b-4c66-816c-09e243a188f5": { + "@type": "listing", + "block": "24280e07-e962-4414-8ee5-cdaf58ca5f35", + "headline": "Listing: Grid", + "headlineTag": "h2", + "query": [], + "querystring": { + "limit": "5", + "query": [ + { + "i": "portal_type", + "o": "plone.app.querystring.operation.selection.any", + "v": [ + "Document" + ] + }, + { + "i": "Subject", + "o": "plone.app.querystring.operation.selection.none", + "v": [ + "main folder" + ] + } + ], + "sort_on": "getId", + "sort_order": "ascending" + }, + "styles": { + "backgroundColor": "transparent" + }, + "variation": "grid" + }, + "43068b6d-d8e9-4acc-912b-eabcdc650939": { + "@type": "title" + }, + "53ececaa-4219-42a9-861d-862be364fd60": { + "@type": "listing", + "block": "24280e07-e962-4414-8ee5-cdaf58ca5f35", + "headline": "Listing: Summary", + "headlineTag": "h2", + "query": [], + "querystring": { + "limit": "5", + "query": [ + { + "i": "portal_type", + "o": "plone.app.querystring.operation.selection.any", + "v": [ + "Document" + ] + }, + { + "i": "Subject", + "o": "plone.app.querystring.operation.selection.none", + "v": [ + "main folder" + ] + } + ], + "sort_on": "getId", + "sort_order": "ascending" + }, + "styles": { + "backgroundColor": "grey" + }, + "variation": "summary" + }, + "c2eaacd0-4e96-4344-a0ac-26ed644fc503": { + "@type": "listing", + "block": "c2eaacd0-4e96-4344-a0ac-26ed644fc503", + "headline": "Listing: Bilder-Slider", + "headlineTag": "h2", + "query": [], + "querystring": { + "query": [ + { + "i": "portal_type", + "o": "plone.app.querystring.operation.selection.any", + "v": [ + "Image" + ] + } + ], + "sort_order": "ascending" + }, + "styles": {}, + "variation": "imageGallery" + } + }, + "blocks_layout": { + "items": [ + "43068b6d-d8e9-4acc-912b-eabcdc650939", + "24280e07-e962-4414-8ee5-cdaf58ca5f35", + "53ececaa-4219-42a9-861d-862be364fd60", + "2a597dde-dd2b-4c66-816c-09e243a188f5", + "c2eaacd0-4e96-4344-a0ac-26ed644fc503" + ] + }, + "contributors": [], + "created": "2023-07-06T21:35:19+00:00", + "creators": [ + "admin" + ], + "description": "The listing block allows the display of various listings of content. Editors can configure a number of criteria for listing content (e.g. all news from 2022 with the keyword 'research').", + "effective": "2023-07-06T18:35:00", + "exclude_from_nav": false, + "expires": null, + "id": "listing-block", + "is_folderish": true, + "language": "en", + "layout": "document_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2023-09-22T14:56:41+00:00", + "parent": { + "@id": "/block", + "@type": "Document", + "UID": "425695d2b7cb47e69374d6f211f17e38", + "description": "", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Blocks", + "type_title": "Page" + }, + "preview_caption": null, + "preview_image": null, + "review_state": "published", + "rights": "", + "subjects": [], + "title": "Listing", + "type_title": "Page", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2023-07-06T21:35:19+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2023-07-06T21:35:19+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/16.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/16.json new file mode 100644 index 0000000..f3c4be7 --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/16.json @@ -0,0 +1,227 @@ +{ + "@id": "/block/maps-block", + "@type": "Document", + "UID": "e090d954d0a448bca81c1a646e673a12", + "allow_discussion": false, + "blocks": { + "0e3611aa-3dfe-421b-a8dc-c45ec3cf7262": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore\nblandit praesent luptatum zzril qui Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore\nblandit praesent luptatum zzril qui.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore\nblandit praesent luptatum zzril qui Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore\nblandit praesent luptatum zzril qui." + } + ], + "type": "p" + } + ] + }, + "43a4b392-f0c3-4b8d-a17d-9b4ddea3f0f0": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore\nblandit praesent luptatum zzril qui Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore\nblandit praesent luptatum zzril qui.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore\nblandit praesent luptatum zzril qui Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore\nblandit praesent luptatum zzril qui." + } + ], + "type": "p" + } + ] + }, + "642c75ac-0c4a-4138-8ad7-954a3fa561e6": { + "@type": "maps", + "align": "left", + "styles": {}, + "title": "kitconcept , Riesstra\u00dfe 21, 53113 Bonn, Germany", + "url": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2525.497302522086!2d7.10273717832893!3d50.729264671646604!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x47bee1b954c6ab87%3A0xafb410d310340cc2!2skitconcept%20GmbH!5e0!3m2!1sen!2sin!4v1690535017060!5m2!1sen!2sin" + }, + "68370edd-bfe5-47fb-937e-16a19a3a92ad": { + "@type": "title" + }, + "6ce27ed7-7470-4f83-a418-31b2c23e7f50": { + "@type": "maps", + "align": "right", + "styles": {}, + "title": "kitconcept GmbH, Riesstra\u00dfe 21, 53113 Bonn, Germany", + "url": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2525.497302522086!2d7.10273717832893!3d50.729264671646604!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x47bee1b954c6ab87%3A0xafb410d310340cc2!2skitconcept%20GmbH!5e0!3m2!1sen!2sin!4v1690535017060!5m2!1sen!2sin" + }, + "7248c659-f678-4e2f-8ac7-5bc5a8abf729": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi." + } + ], + "type": "p" + } + ] + }, + "96789bf6-953b-4777-a022-0f4cd852be64": { + "@type": "separator", + "styles": { + "align": "full" + } + }, + "aaf7adb1-00b2-4cc2-8729-91c33ea8fe6a": { + "@type": "slate", + "plaintext": "Text Heading H3", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Text Heading H3" + } + ], + "type": "h3" + } + ] + }, + "b94908e2-0600-493a-8a92-0b8a23e2938b": { + "@type": "slate", + "plaintext": "Text Heading H3", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Text Heading H3" + } + ], + "type": "h3" + } + ] + }, + "bd950eb2-f462-4146-9d4a-3c8139abbb94": { + "@type": "maps", + "align": "center", + "styles": {}, + "title": "kitconcept GmbH, Riesstra\u00dfe 21, Germany", + "url": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2525.497302522086!2d7.10273717832893!3d50.729264671646604!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x47bee1b954c6ab87%3A0xafb410d310340cc2!2skitconcept%20GmbH!5e0!3m2!1sen!2sin!4v1690535017060!5m2!1sen!2sin" + }, + "ce3be1bc-5e35-409d-971b-194bb084db4a": { + "@type": "slate", + "plaintext": "Text Heading H2", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Text Heading H2 " + } + ], + "type": "h2" + } + ] + }, + "ceee1cfa-80ff-44f1-b3af-3cfd4be3f4ba": { + "@type": "maps", + "align": "full", + "styles": {}, + "title": "kitconcept GmbH, 53113 Bonn, Riesstra\u00dfe 21, Germany", + "url": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2525.497302522086!2d7.10273717832893!3d50.729264671646604!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x47bee1b954c6ab87%3A0xafb410d310340cc2!2skitconcept%20GmbH!5e0!3m2!1sen!2sin!4v1690535017060!5m2!1sen!2sin" + }, + "d5fe5f6d-2a9b-4e65-b5bf-2faded6073b7": { + "@type": "separator", + "styles": { + "align": "left" + } + }, + "e36a9020-5e7e-4ef5-97f7-862c45fea81c": { + "@type": "maps", + "align": "wide", + "styles": {}, + "title": "Plone Conference 2024 Location", + "url": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d87566.68577085606!2d-47.95332527820518!3d-15.809328986914526!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x935a3d18df9ae275%3A0x738470e469754a24!2sBras%C3%ADlia%20-%20Brasilia%2C%20Bras%C3%ADlia%20-%20Distrito%20Federal%20do%20Brasil%2C%20Brasilien!5e0!3m2!1sde!2sde!4v1709908391592!5m2!1sde!2sde" + }, + "f9dec030-b72d-4940-af4c-6dc123cea7a6": { + "@type": "slate" + } + }, + "blocks_layout": { + "items": [ + "68370edd-bfe5-47fb-937e-16a19a3a92ad", + "e36a9020-5e7e-4ef5-97f7-862c45fea81c", + "96789bf6-953b-4777-a022-0f4cd852be64", + "ce3be1bc-5e35-409d-971b-194bb084db4a", + "7248c659-f678-4e2f-8ac7-5bc5a8abf729", + "bd950eb2-f462-4146-9d4a-3c8139abbb94", + "d5fe5f6d-2a9b-4e65-b5bf-2faded6073b7", + "b94908e2-0600-493a-8a92-0b8a23e2938b", + "6ce27ed7-7470-4f83-a418-31b2c23e7f50", + "0e3611aa-3dfe-421b-a8dc-c45ec3cf7262", + "642c75ac-0c4a-4138-8ad7-954a3fa561e6", + "aaf7adb1-00b2-4cc2-8729-91c33ea8fe6a", + "43a4b392-f0c3-4b8d-a17d-9b4ddea3f0f0", + "ceee1cfa-80ff-44f1-b3af-3cfd4be3f4ba", + "f9dec030-b72d-4940-af4c-6dc123cea7a6" + ] + }, + "contributors": [], + "created": "2023-07-28T09:10:43+00:00", + "creators": [ + "admin" + ], + "description": "The maps block can have embeded a Map (Google Maps, OpenMaps, etc).", + "effective": "2023-09-22T16:09:00", + "exclude_from_nav": false, + "expires": null, + "id": "maps-block", + "is_folderish": true, + "language": "en", + "layout": "document_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2024-03-08T14:33:48+00:00", + "parent": { + "@id": "/block", + "@type": "Document", + "UID": "425695d2b7cb47e69374d6f211f17e38", + "description": "", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Blocks", + "type_title": "Page" + }, + "preview_caption": null, + "preview_image": null, + "review_state": "published", + "rights": "", + "subjects": [], + "title": "Maps", + "type_title": "Page", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2023-07-28T09:10:43+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2023-09-22T14:09:31+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/17.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/17.json new file mode 100644 index 0000000..d91268e --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/17.json @@ -0,0 +1,119 @@ +{ + "@id": "/block/search-block", + "@type": "Document", + "UID": "928010d84e5d4df2b2282f3e179d6b1a", + "allow_discussion": false, + "blocks": { + "42b7d589-4d35-4b81-9fe9-ea17437beb81": { + "@type": "search", + "listingBodyTemplate": "summary", + "query": { + "b_size": "4", + "limit": "4", + "query": [], + "sort_order": "ascending" + }, + "showSearchInput": true, + "showSortOn": true, + "showTotalResults": true + }, + "518c46e7-9823-4e03-aa3a-d2a9ec1746dd": { + "@type": "search", + "query": { + "b_size": "4", + "query": [], + "sort_order": "ascending" + }, + "showSearchInput": true, + "showSortOn": true, + "showTotalResults": true + }, + "f6d35d7e-6422-4496-8a65-f7cfd42fb519": { + "@type": "title" + }, + "undefined": { + "@type": "search", + "listingBodyTemplate": "summary", + "query": { + "b_size": "4", + "limit": "4", + "query": [], + "sort_order": "ascending" + }, + "showSearchInput": true, + "showSortOn": true, + "showTotalResults": true + } + }, + "blocks_layout": { + "items": [ + "f6d35d7e-6422-4496-8a65-f7cfd42fb519", + "518c46e7-9823-4e03-aa3a-d2a9ec1746dd", + "42b7d589-4d35-4b81-9fe9-ea17437beb81" + ] + }, + "contributors": [], + "created": "2023-07-06T21:35:20+00:00", + "creators": [ + "admin" + ], + "description": "The search block allows the content of the website to be listed. Users can use so-called facets to select certain properties of the listed content in order to filter them (e.g. filtering the news of 2022).", + "effective": "2023-07-06T18:35:00", + "exclude_from_nav": false, + "expires": null, + "id": "search-block", + "is_folderish": true, + "language": "en", + "layout": "document_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2023-12-28T09:36:10+00:00", + "parent": { + "@id": "/block", + "@type": "Document", + "UID": "425695d2b7cb47e69374d6f211f17e38", + "description": "", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Blocks", + "type_title": "Page" + }, + "preview_caption": null, + "preview_image": { + "blob_path": "blobs/928010d84e5d4df2b2282f3e179d6b1a-preview_image/black-starry-night.jpg", + "content-type": "image/jpeg", + "filename": "black-starry-night.jpg", + "height": 1708, + "size": 693013, + "width": 2400 + }, + "review_state": "published", + "rights": "", + "subjects": [], + "title": "Search", + "type_title": "Page", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2023-07-06T21:35:20+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2023-07-06T21:35:20+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/18.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/18.json new file mode 100644 index 0000000..a39de67 --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/18.json @@ -0,0 +1,307 @@ +{ + "@id": "/block/separator-block", + "@type": "Document", + "UID": "546e82cce6c842d0a4046a0131539bd2", + "allow_discussion": false, + "blocks": { + "16d92364-84f3-4ef1-a24a-8d217ee15456": { + "@type": "slate", + "plaintext": "Text Heading H2", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Text Heading H2" + } + ], + "type": "h2" + } + ] + }, + "360c5f14-05d0-4292-afcb-e4edb164addc": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi." + } + ], + "type": "p" + } + ] + }, + "462237eb-7cbe-4fc3-8fcb-7cd18eeeaf7f": { + "@type": "slate", + "plaintext": "Text Heading H3", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Text Heading H3" + } + ], + "type": "h3" + } + ] + }, + "47b1e791-6f01-4b9b-a923-6658e7bc7871": { + "@type": "title" + }, + "512e7346-36b6-4b57-a4ee-54c23ea27aa0": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore blandit praesent luptatum zzril qu. Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore blandit praesent luptatum zzril qu. Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. " + } + ], + "type": "p" + } + ] + }, + "6d7874ae-a64d-4e79-8264-ef56cebd4ccf": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi." + } + ], + "type": "p" + } + ] + }, + "9128144d-66f8-4943-8b1d-253cb11431de": { + "@type": "image", + "align": "left", + "credit": {}, + "description": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt.", + "size": "m", + "styles": { + "size:noprefix": "medium" + }, + "title": "Title Image", + "url": "/content-types/image" + }, + "9c102ef1-5044-41cf-9859-025b23a90c26": { + "@type": "image", + "align": "left", + "credit": {}, + "description": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt.", + "size": "s", + "styles": { + "size:noprefix": "small" + }, + "title": "Title Image", + "url": "/content-types/image" + }, + "a10b2026-51da-421a-a2b7-1e9617362366": { + "@type": "separator", + "styles": { + "align": "center" + } + }, + "a4eccaa5-e954-4c35-9d1d-bd3ce3a68691": { + "@type": "separator", + "styles": { + "align": "center" + } + }, + "be9ea3ae-29e1-41b8-b338-f32070a82675": { + "@type": "introduction", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.", + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat." + } + ], + "type": "p" + } + ] + }, + "c0f46bdd-58ae-48a1-9ee7-a9ba780d7386": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore blandit praesent luptatum zzril qu. Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore blandit praesent luptatum zzril qu. Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. " + } + ], + "type": "p" + } + ] + }, + "c209c305-cde3-497d-9a58-3dc642f3cb5d": { + "@type": "slate", + "plaintext": "Text Heading H3", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Text Heading H3" + } + ], + "type": "h3" + } + ] + }, + "cf7e08f3-b9a8-4604-b208-e3a8bc88ec83": { + "@type": "separator", + "styles": { + "align": "full" + } + }, + "d4d24182-f2b9-4f42-8775-92ceeabeb962": { + "@type": "image", + "align": "center", + "credit": {}, + "description": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt.", + "size": "l", + "title": "Title Image", + "url": "/content-types/image" + }, + "d65027a5-7bc8-476b-8061-779ba923b04a": { + "@type": "image", + "align": "right", + "credit": {}, + "description": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt.", + "size": "l", + "styles": { + "size:noprefix": "large" + }, + "title": "Title Image", + "url": "/content-types/image" + }, + "da5327a4-144c-4327-a38e-98a58643f9d0": { + "@type": "separator", + "styles": { + "align": "left" + } + }, + "dee0a2a5-dda7-407d-be26-1cecf1ba55a6": { + "@type": "separator", + "styles": { + "align": "full" + } + }, + "e28cf868-7156-445c-a512-dba929aa6977": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore blandit praesent luptatum zzril qu. Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore blandit praesent luptatum zzril qu. Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. " + } + ], + "type": "p" + } + ] + }, + "ef3f8f79-11c3-4495-b98f-15f0568645b5": { + "@type": "separator", + "styles": { + "align": "left" + } + } + }, + "blocks_layout": { + "items": [ + "47b1e791-6f01-4b9b-a923-6658e7bc7871", + "dee0a2a5-dda7-407d-be26-1cecf1ba55a6", + "be9ea3ae-29e1-41b8-b338-f32070a82675", + "cf7e08f3-b9a8-4604-b208-e3a8bc88ec83", + "360c5f14-05d0-4292-afcb-e4edb164addc", + "6d7874ae-a64d-4e79-8264-ef56cebd4ccf", + "a4eccaa5-e954-4c35-9d1d-bd3ce3a68691", + "d4d24182-f2b9-4f42-8775-92ceeabeb962", + "a10b2026-51da-421a-a2b7-1e9617362366", + "d65027a5-7bc8-476b-8061-779ba923b04a", + "16d92364-84f3-4ef1-a24a-8d217ee15456", + "e28cf868-7156-445c-a512-dba929aa6977", + "da5327a4-144c-4327-a38e-98a58643f9d0", + "9128144d-66f8-4943-8b1d-253cb11431de", + "462237eb-7cbe-4fc3-8fcb-7cd18eeeaf7f", + "512e7346-36b6-4b57-a4ee-54c23ea27aa0", + "ef3f8f79-11c3-4495-b98f-15f0568645b5", + "9c102ef1-5044-41cf-9859-025b23a90c26", + "c209c305-cde3-497d-9a58-3dc642f3cb5d", + "c0f46bdd-58ae-48a1-9ee7-a9ba780d7386" + ] + }, + "contributors": [], + "created": "2023-07-06T21:35:20+00:00", + "creators": [ + "admin" + ], + "description": "\nThe separator block allows blocks or groups of blocks to be visually separated by a horizontal line.", + "effective": "2023-07-06T18:35:00", + "exclude_from_nav": false, + "expires": null, + "id": "separator-block", + "is_folderish": true, + "language": "en", + "layout": "document_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2023-12-21T10:51:31+00:00", + "parent": { + "@id": "/block", + "@type": "Document", + "UID": "425695d2b7cb47e69374d6f211f17e38", + "description": "", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Blocks", + "type_title": "Page" + }, + "preview_caption": null, + "preview_image": null, + "review_state": "published", + "rights": "", + "subjects": [], + "title": "Separator", + "type_title": "Page", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2023-07-06T21:35:20+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2023-07-06T21:35:20+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/19.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/19.json new file mode 100644 index 0000000..0bec88b --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/19.json @@ -0,0 +1,5244 @@ +{ + "@id": "/block/table-block", + "@type": "Document", + "UID": "102f648399914851951ffa3fefc8665c", + "allow_discussion": false, + "blocks": { + "0b0891c8-812e-41ca-b572-b7851361025f": { + "@type": "slateTable", + "styles": { + "backgroundColor": "grey" + }, + "table": { + "basic": false, + "celled": true, + "compact": false, + "fixed": true, + "hideHeaders": false, + "inverted": false, + "rows": [ + { + "cells": [ + { + "key": "2616q", + "type": "header", + "value": [ + { + "children": [ + { + "text": "Title Tablehead" + } + ], + "type": "p" + } + ] + }, + { + "key": "9c5fm", + "type": "header", + "value": [ + { + "children": [ + { + "text": "Title Tablehead" + } + ], + "type": "p" + } + ] + }, + { + "key": "ljf3", + "type": "header", + "value": [ + { + "children": [ + { + "text": "Title Tablehead" + } + ], + "type": "p" + } + ] + }, + { + "key": "fgtdt", + "type": "header", + "value": [ + { + "children": [ + { + "text": "Title Tablehead" + } + ], + "type": "p" + } + ] + } + ], + "key": "36un" + }, + { + "cells": [ + { + "key": "flhhb", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": " " + } + ], + "type": "p" + } + ] + }, + { + "key": "9biso", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + { + "key": "56ea8", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + { + "key": "47ahr", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + } + ], + "key": "6qrch" + }, + { + "cells": [ + { + "key": "21kbu", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + { + "key": "1ph74", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + { + "key": "5m4uq", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + { + "key": "6474i", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + } + ], + "key": "7ujhi" + }, + { + "cells": [ + { + "key": "99oe4", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + { + "key": "d896l", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + { + "key": "ack6p", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + { + "key": "fkour", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + } + ], + "key": "8f7ih" + }, + { + "cells": [ + { + "key": "cn6mu", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + { + "key": "4t8ro", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + { + "key": "72b6i", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + { + "key": "5nchn", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + } + ], + "key": "bd5ru" + } + ], + "striped": false + } + }, + "0d727fc0-71c0-4e2c-918a-35b726636569": { + "@type": "slateTable", + "styles": {}, + "table": { + "basic": false, + "celled": true, + "compact": false, + "fixed": true, + "hideHeaders": false, + "inverted": false, + "rows": [ + { + "cells": [ + { + "key": "2616q", + "type": "header", + "value": [ + { + "children": [ + { + "text": "Title Tablehead" + } + ], + "type": "p" + } + ] + }, + { + "key": "9c5fm", + "type": "header", + "value": [ + { + "children": [ + { + "text": "Title Tablehead" + } + ], + "type": "p" + } + ] + }, + { + "key": "ljf3", + "type": "header", + "value": [ + { + "children": [ + { + "text": "Title Tablehead" + } + ], + "type": "p" + } + ] + }, + { + "key": "fgtdt", + "type": "header", + "value": [ + { + "children": [ + { + "text": "Title Tablehead" + } + ], + "type": "p" + } + ] + } + ], + "key": "36un" + }, + { + "cells": [ + { + "key": "flhhb", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": " " + } + ], + "type": "p" + } + ] + }, + { + "key": "9biso", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + { + "key": "56ea8", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + { + "key": "47ahr", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + } + ], + "key": "6qrch" + }, + { + "cells": [ + { + "key": "21kbu", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + { + "key": "1ph74", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + { + "key": "5m4uq", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + { + "key": "6474i", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + } + ], + "key": "7ujhi" + }, + { + "cells": [ + { + "key": "99oe4", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + { + "key": "d896l", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + { + "key": "ack6p", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + { + "key": "fkour", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + } + ], + "key": "8f7ih" + }, + { + "cells": [ + { + "key": "cn6mu", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + { + "key": "4t8ro", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + { + "key": "72b6i", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + { + "key": "5nchn", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + } + ], + "key": "bd5ru" + } + ], + "striped": false + } + }, + "10566683-a8b2-4b47-b64b-b01ddf43c307": { + "@type": "heading", + "alignment": "left", + "heading": "Basic Table", + "styles": { + "backgroundColor": "grey" + }, + "tag": "h2" + }, + "4266731a-e721-4f2f-95de-c7c3e885677b": { + "@type": "slateTable", + "styles": { + "backgroundColor": "grey" + }, + "table": { + "basic": false, + "celled": true, + "compact": false, + "fixed": true, + "hideHeaders": false, + "inverted": false, + "rows": [ + { + "cells": [ + { + "key": "2616q", + "type": "header", + "value": [ + { + "children": [ + { + "text": "Title Tablehead" + } + ], + "type": "p" + } + ] + }, + { + "key": "9c5fm", + "type": "header", + "value": [ + { + "children": [ + { + "text": "Title Tablehead" + } + ], + "type": "p" + } + ] + }, + { + "key": "ljf3", + "type": "header", + "value": [ + { + "children": [ + { + "text": "Title Tablehead" + } + ], + "type": "p" + } + ] + }, + { + "key": "fgtdt", + "type": "header", + "value": [ + { + "children": [ + { + "text": "Title Tablehead" + } + ], + "type": "p" + } + ] + } + ], + "key": "36un" + }, + { + "cells": [ + { + "key": "flhhb", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": " " + } + ], + "type": "p" + } + ] + }, + { + "key": "9biso", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + { + "key": "56ea8", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + { + "key": "47ahr", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + } + ], + "key": "6qrch" + }, + { + "cells": [ + { + "key": "21kbu", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + { + "key": "1ph74", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + { + "key": "5m4uq", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + { + "key": "6474i", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + } + ], + "key": "7ujhi" + }, + { + "cells": [ + { + "key": "99oe4", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + { + "key": "d896l", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + { + "key": "ack6p", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + { + "key": "fkour", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + } + ], + "key": "8f7ih" + }, + { + "cells": [ + { + "key": "cn6mu", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + { + "key": "4t8ro", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + { + "key": "72b6i", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + { + "key": "5nchn", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + } + ], + "key": "bd5ru" + } + ], + "striped": true + } + }, + "4a5779a4-fda5-431c-80e5-3c789375ce10": { + "@type": "slateTable", + "styles": {}, + "table": { + "basic": false, + "celled": true, + "compact": false, + "fixed": true, + "hideHeaders": false, + "inverted": false, + "rows": [ + { + "cells": [ + { + "key": "2616q", + "type": "header", + "value": [ + { + "children": [ + { + "text": "Title Tablehead" + } + ], + "type": "p" + } + ] + }, + { + "key": "9c5fm", + "type": "header", + "value": [ + { + "children": [ + { + "text": "Title Tablehead" + } + ], + "type": "p" + } + ] + }, + { + "key": "ljf3", + "type": "header", + "value": [ + { + "children": [ + { + "text": "Title Tablehead" + } + ], + "type": "p" + } + ] + }, + { + "key": "fgtdt", + "type": "header", + "value": [ + { + "children": [ + { + "text": "Title Tablehead" + } + ], + "type": "p" + } + ] + } + ], + "key": "36un" + }, + { + "cells": [ + { + "key": "flhhb", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": " " + } + ], + "type": "p" + } + ] + }, + { + "key": "9biso", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + { + "key": "56ea8", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + { + "key": "47ahr", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + } + ], + "key": "6qrch" + }, + { + "cells": [ + { + "key": "21kbu", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + { + "key": "1ph74", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + { + "key": "5m4uq", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + { + "key": "6474i", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + } + ], + "key": "7ujhi" + }, + { + "cells": [ + { + "key": "99oe4", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + { + "key": "d896l", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + { + "key": "ack6p", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + { + "key": "fkour", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + } + ], + "key": "8f7ih" + }, + { + "cells": [ + { + "key": "cn6mu", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + { + "key": "4t8ro", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + { + "key": "72b6i", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + { + "key": "5nchn", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "p" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + } + ], + "key": "bd5ru" + } + ], + "striped": true + } + }, + "7aafc602-902a-4d21-bf63-2e7c5c8d4839": { + "@type": "heading", + "alignment": "left", + "heading": "Stripe alternating rows with colors", + "styles": {}, + "tag": "h2" + }, + "aa800193-7bf4-4f54-9bb6-a6c5b4e02b81": { + "@type": "heading", + "alignment": "left", + "heading": "Stripe alternating rows with colors", + "styles": { + "backgroundColor": "grey" + }, + "tag": "h2" + }, + "fb451586-3dab-4b40-a5f8-f73056685165": { + "@type": "title" + }, + "ff4fd61a-f5eb-4733-a883-816985c44348": { + "@type": "heading", + "alignment": "left", + "heading": "Basic Table", + "styles": {}, + "tag": "h2" + } + }, + "blocks_layout": { + "items": [ + "fb451586-3dab-4b40-a5f8-f73056685165", + "ff4fd61a-f5eb-4733-a883-816985c44348", + "0d727fc0-71c0-4e2c-918a-35b726636569", + "7aafc602-902a-4d21-bf63-2e7c5c8d4839", + "4a5779a4-fda5-431c-80e5-3c789375ce10", + "10566683-a8b2-4b47-b64b-b01ddf43c307", + "0b0891c8-812e-41ca-b572-b7851361025f", + "aa800193-7bf4-4f54-9bb6-a6c5b4e02b81", + "4266731a-e721-4f2f-95de-c7c3e885677b" + ] + }, + "contributors": [], + "created": "2023-07-06T21:35:20+00:00", + "creators": [ + "admin" + ], + "description": "The Table block allows you to add a table to a page.", + "effective": "2023-07-06T18:35:00", + "exclude_from_nav": false, + "expires": null, + "id": "table-block", + "is_folderish": true, + "language": "en", + "layout": "document_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2023-09-22T15:08:06+00:00", + "parent": { + "@id": "/block", + "@type": "Document", + "UID": "425695d2b7cb47e69374d6f211f17e38", + "description": "", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Blocks", + "type_title": "Page" + }, + "preview_caption": null, + "preview_image": { + "blob_path": "blobs/102f648399914851951ffa3fefc8665c-preview_image/black-starry-night.jpg", + "content-type": "image/jpeg", + "filename": "black-starry-night.jpg", + "height": 1708, + "size": 693013, + "width": 2400 + }, + "review_state": "published", + "rights": "", + "subjects": [], + "title": "Table", + "type_title": "Page", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2023-07-06T21:35:20+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2023-07-06T21:35:20+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/2.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/2.json new file mode 100644 index 0000000..5b3a921 --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/2.json @@ -0,0 +1,95 @@ +{ + "@id": "/block", + "@type": "Document", + "UID": "425695d2b7cb47e69374d6f211f17e38", + "allow_discussion": false, + "blocks": { + "4f0384d8-2319-4c17-896e-7e4c9c253870": { + "@type": "listing", + "headlineTag": "h2", + "styles": {}, + "variation": "default" + }, + "694274fb-a0f1-44f6-871f-51b3459dbc2b": { + "@type": "slate", + "plaintext": "", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "" + } + ], + "type": "p" + } + ] + }, + "8078bc6a-9358-4d25-89e0-0ae9c31863bf": { + "@type": "title" + } + }, + "blocks_layout": { + "items": [ + "8078bc6a-9358-4d25-89e0-0ae9c31863bf", + "4f0384d8-2319-4c17-896e-7e4c9c253870", + "694274fb-a0f1-44f6-871f-51b3459dbc2b" + ] + }, + "contributors": [], + "created": "2023-09-22T14:06:39+00:00", + "creators": [ + "admin" + ], + "description": "", + "effective": "2023-09-22T16:09:00", + "exclude_from_nav": false, + "expires": null, + "id": "block", + "is_folderish": true, + "language": "en", + "layout": "document_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2024-03-09T09:14:28+00:00", + "parent": { + "@id": "/", + "@type": "Plone Site", + "UID": "87f1f0ea555d423698c3ce09e17d7873", + "description": "Site created with a new Plone Distribution", + "title": "Welcome to Plone 6", + "type_title": "Plone Site" + }, + "preview_caption": null, + "preview_image": null, + "review_state": "published", + "rights": "", + "subjects": [ + "main folder" + ], + "title": "Blocks", + "type_title": "Page", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2023-09-22T14:06:39+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2023-09-22T14:09:15+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/20.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/20.json new file mode 100644 index 0000000..f1184aa --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/20.json @@ -0,0 +1,218 @@ +{ + "@id": "/block/teaser-block", + "@type": "Document", + "UID": "bd2b39d2745847db82ed197a4eb1effc", + "allow_discussion": false, + "blocks": { + "03fd3352-0845-4c70-9d01-805996bd127b": { + "@type": "teaser", + "description": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea.", + "head_title": "Head title", + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "Title": "Page", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Page" + } + ], + "styles": { + "align": "left" + }, + "title": "Headline H2" + }, + "530939e1-8579-4d37-a111-716475c00cac": { + "@type": "teaser", + "description": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea.", + "head_title": "Head title", + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "Title": "Page", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Page" + } + ], + "styles": { + "align": "right" + }, + "title": "Headline H2" + }, + "61f0e286-0527-43a7-b8fe-29f1be40a8c3": { + "@type": "teaser", + "description": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.", + "head_title": "Head title", + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "Title": "Page", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Page" + } + ], + "styles": { + "align": "center" + }, + "title": "Headline H2" + }, + "620f0540-8c3d-422d-a1c6-47037b5dbfbc": { + "@type": "teaser", + "description": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea.", + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "Title": "Page", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Page" + } + ], + "styles": { + "align": "right", + "backgroundColor": "grey" + }, + "title": "Headline H2" + }, + "95648579-7116-401f-a448-e48938c88246": { + "@type": "teaser", + "description": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.", + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "Title": "Page", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Page" + } + ], + "styles": { + "align": "center", + "backgroundColor": "grey" + }, + "title": "Headline H2" + }, + "b798dde4-6a5d-4cef-9e25-fd532e1ea9a7": { + "@type": "teaser", + "description": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea.", + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "Title": "Page", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Page" + } + ], + "styles": { + "align": "left", + "backgroundColor": "grey" + }, + "title": "Headline H2" + }, + "b986b92c-e180-42d3-b755-4728854e5a50": { + "@type": "title" + } + }, + "blocks_layout": { + "items": [ + "b986b92c-e180-42d3-b755-4728854e5a50", + "61f0e286-0527-43a7-b8fe-29f1be40a8c3", + "03fd3352-0845-4c70-9d01-805996bd127b", + "530939e1-8579-4d37-a111-716475c00cac", + "95648579-7116-401f-a448-e48938c88246", + "b798dde4-6a5d-4cef-9e25-fd532e1ea9a7", + "620f0540-8c3d-422d-a1c6-47037b5dbfbc" + ] + }, + "contributors": [], + "created": "2023-07-06T21:35:20+00:00", + "creators": [ + "admin" + ], + "description": "The teaser block allows you to add an element that teases existing website content with an image, a title and a description.", + "effective": "2023-07-06T18:35:00", + "exclude_from_nav": false, + "expires": null, + "id": "teaser-block", + "is_folderish": true, + "language": "en", + "layout": "document_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2024-03-09T09:35:06+00:00", + "parent": { + "@id": "/block", + "@type": "Document", + "UID": "425695d2b7cb47e69374d6f211f17e38", + "description": "", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Blocks", + "type_title": "Page" + }, + "preview_caption": null, + "preview_image": { + "blob_path": "blobs/bd2b39d2745847db82ed197a4eb1effc-preview_image/black-starry-night.jpg", + "content-type": "image/jpeg", + "filename": "black-starry-night.jpg", + "height": 1708, + "size": 693013, + "width": 2400 + }, + "review_state": "published", + "rights": "", + "subjects": [], + "title": "Teaser", + "type_title": "Page", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2023-07-06T21:35:20+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2023-07-06T21:35:21+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/21.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/21.json new file mode 100644 index 0000000..2a8d3f6 --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/21.json @@ -0,0 +1,368 @@ +{ + "@id": "/block/text-block", + "@type": "Document", + "UID": "2508797173824f0e9f82bb2e7cfe922d", + "allow_discussion": false, + "blocks": { + "00146980-5c86-4ecd-a84e-d373183231ad": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet", + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet" + } + ], + "type": "p" + } + ] + }, + "244197b5-ac86-4d92-b235-18986a351580": { + "@type": "separator" + }, + "291012a9-ca10-4011-9121-32a210f24d58": { + "@type": "slate", + "plaintext": "This is unordered list This is unordered list This is unordered list", + "value": [ + { + "children": [ + { + "children": [ + { + "text": "This is unordered list" + } + ], + "type": "li" + }, + { + "children": [ + { + "text": "This is unordered list" + } + ], + "type": "li" + }, + { + "children": [ + { + "text": "This is unordered list" + } + ], + "type": "li" + } + ], + "type": "ul" + } + ] + }, + "2abcc2af-dc78-4ca6-8882-6682f7e9a5b9": { + "@type": "slate", + "plaintext": " This is link. ", + "value": [ + { + "children": [ + { + "text": "" + }, + { + "children": [ + { + "text": "" + } + ], + "type": "em" + }, + { + "text": "" + }, + { + "children": [ + { + "text": "This is link." + } + ], + "data": { + "url": "https://www.google.com/" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + "3a2f8507-01bf-49a4-a670-2159005075df": { + "@type": "slate", + "plaintext": "This is H3", + "value": [ + { + "children": [ + { + "text": "This is H3" + } + ], + "type": "h3" + } + ] + }, + "486c4646-de10-40a9-9470-58b7b1449240": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.", + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet." + } + ], + "type": "p" + } + ] + }, + "55df52be-8681-4d09-a17b-f32f31632213": { + "@type": "separator" + }, + "5783a103-3129-48f8-80af-f7ad7af1efa4": { + "@type": "slate", + "plaintext": " This is bold text. ", + "value": [ + { + "children": [ + { + "text": "" + }, + { + "children": [ + { + "text": "This is bold text." + } + ], + "type": "strong" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + "801d735a-2d81-428e-a4e9-85d1e82c3639": { + "@type": "separator" + }, + "8df2a31d-76a5-445c-aacc-0437c48331d8": { + "@type": "slate", + "plaintext": "This is H2", + "value": [ + { + "children": [ + { + "text": "This is H2" + } + ], + "type": "h2" + } + ] + }, + "910a3f25-0318-41b3-a1a6-6e35cdf83451": { + "@type": "slate", + "plaintext": "\u00dcberschrift zweiter Ordnung (Headline H2)", + "value": [ + { + "children": [ + { + "text": "\u00dcberschrift zweiter Ordnung (Headline H2)" + } + ], + "type": "h2" + } + ] + }, + "9704c0d2-3e17-41c6-b3f6-9ae051d8c2f8": { + "@type": "slate", + "plaintext": " This is Italics. ", + "value": [ + { + "children": [ + { + "text": "" + }, + { + "children": [ + { + "text": "This is Italics." + } + ], + "type": "em" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + "9aa1cf78-c6dd-4f31-8673-4a3fc2653add": { + "@type": "slate", + "plaintext": "one two three", + "value": [ + { + "children": [ + { + "children": [ + { + "text": "one" + } + ], + "type": "li" + }, + { + "children": [ + { + "text": "two" + } + ], + "type": "li" + }, + { + "children": [ + { + "text": "three" + } + ], + "type": "li" + } + ], + "type": "ol" + } + ] + }, + "ccff41c6-b733-4b88-b02e-4c07460a19e2": { + "@type": "title" + }, + "cd44a7ba-b521-41fb-a609-0d1b8d9df592": { + "@type": "heading", + "alignment": "left", + "heading": " Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. ", + "tag": "h2" + }, + "da904eda-9add-496c-ab09-4fee9820af1f": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.", + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet." + } + ], + "type": "p" + } + ] + }, + "f0a56edf-a963-4177-877c-76d9a4d6c20b": { + "@type": "slate", + "plaintext": "\u00dcberschrift dritter Ordnung (Headline H3)", + "value": [ + { + "children": [ + { + "text": "\u00dcberschrift dritter Ordnung (Headline H3)" + } + ], + "type": "h3" + } + ] + } + }, + "blocks_layout": { + "items": [ + "ccff41c6-b733-4b88-b02e-4c07460a19e2", + "da904eda-9add-496c-ab09-4fee9820af1f", + "244197b5-ac86-4d92-b235-18986a351580", + "5783a103-3129-48f8-80af-f7ad7af1efa4", + "9704c0d2-3e17-41c6-b3f6-9ae051d8c2f8", + "2abcc2af-dc78-4ca6-8882-6682f7e9a5b9", + "8df2a31d-76a5-445c-aacc-0437c48331d8", + "3a2f8507-01bf-49a4-a670-2159005075df", + "9aa1cf78-c6dd-4f31-8673-4a3fc2653add", + "291012a9-ca10-4011-9121-32a210f24d58", + "55df52be-8681-4d09-a17b-f32f31632213", + "cd44a7ba-b521-41fb-a609-0d1b8d9df592", + "801d735a-2d81-428e-a4e9-85d1e82c3639", + "910a3f25-0318-41b3-a1a6-6e35cdf83451", + "486c4646-de10-40a9-9470-58b7b1449240", + "f0a56edf-a963-4177-877c-76d9a4d6c20b", + "00146980-5c86-4ecd-a84e-d373183231ad" + ] + }, + "contributors": [], + "created": "2023-07-06T21:35:21+00:00", + "creators": [ + "admin" + ], + "description": "\nThe Text Block allows you to add text to a web page. The text can be formatted and structured in different ways (bold, headings, etc.).", + "effective": "2023-07-06T18:35:00", + "exclude_from_nav": false, + "expires": null, + "id": "text-block", + "is_folderish": true, + "language": "en", + "layout": "document_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2023-09-22T15:12:36+00:00", + "parent": { + "@id": "/block", + "@type": "Document", + "UID": "425695d2b7cb47e69374d6f211f17e38", + "description": "", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Blocks", + "type_title": "Page" + }, + "preview_caption": null, + "preview_image": { + "blob_path": "blobs/2508797173824f0e9f82bb2e7cfe922d-preview_image/black-starry-night.jpg", + "content-type": "image/jpeg", + "filename": "black-starry-night.jpg", + "height": 1708, + "size": 693013, + "width": 2400 + }, + "review_state": "published", + "rights": "", + "subjects": [], + "title": "Text", + "type_title": "Page", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2023-07-06T21:35:21+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2023-07-06T21:35:21+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/22.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/22.json new file mode 100644 index 0000000..5aa979b --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/22.json @@ -0,0 +1,419 @@ +{ + "@id": "/block/toc-block", + "@type": "Document", + "UID": "3906609d0456404ca7146f6aa1f12f32", + "allow_discussion": false, + "blocks": { + "09460f92-723d-402d-a0a5-76a15f2678ad": { + "@type": "slate", + "plaintext": " Link external ", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "" + }, + { + "children": [ + { + "text": "Link external" + } + ], + "data": { + "url": "https://www.google.com/" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + "22f22002-2159-4e42-942a-8ebc6e930ed5": { + "@type": "toc", + "title": "Inhaltsverzeichnis", + "variation": "default" + }, + "2b54caa5-1c1a-40f2-aacd-84abce141e79": { + "@type": "slate", + "plaintext": " Link internal ", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "" + }, + { + "children": [ + { + "text": "Link internal" + } + ], + "data": { + "url": "/block/heading-block" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + "2e03fd8c-f334-400e-a3a9-d0446e3a1512": { + "@type": "slate", + "plaintext": "Ordered List Bullett Point One Ordered List Bullett Point Two Ordered List Bullett Point Three Ordered List Bullett Point Four", + "styles": {}, + "value": [ + { + "children": [ + { + "children": [ + { + "text": "Ordered List Bullett Point One " + } + ], + "type": "li" + }, + { + "children": [ + { + "text": "Ordered List Bullett Point Two " + } + ], + "type": "li" + }, + { + "children": [ + { + "text": "Ordered List Bullett Point Three" + } + ], + "type": "li" + }, + { + "children": [ + { + "text": "Ordered List Bullett Point Four" + } + ], + "type": "li" + } + ], + "type": "ol" + } + ] + }, + "372b9489-5dc4-44a7-a7a9-649c2bc282db": { + "@type": "slate", + "plaintext": "Ordered List Bullett Point One Ordered List Bullett Point Two Ordered List Bullett Point Three Ordered List Bullett Point Four", + "styles": {}, + "value": [ + { + "children": [ + { + "children": [ + { + "text": "Ordered List Bullett Point One " + } + ], + "type": "li" + }, + { + "children": [ + { + "text": "Ordered List Bullett Point Two " + } + ], + "type": "li" + }, + { + "children": [ + { + "text": "Ordered List Bullett Point Three" + } + ], + "type": "li" + }, + { + "children": [ + { + "text": "Ordered List Bullett Point Four" + } + ], + "type": "li" + } + ], + "type": "ul" + } + ] + }, + "3e036171-0a20-47d0-a06a-a7f493b65186": { + "@type": "separator", + "styles": { + "align": "left" + } + }, + "43dd5fcf-3f52-469b-8ccc-57b785cf65b1": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi." + } + ], + "type": "p" + } + ] + }, + "537a9742-95f1-4930-9df3-d38766f54a71": { + "@type": "title" + }, + "60a17689-6437-4a88-bf2c-76a62351ca5b": { + "@type": "separator", + "styles": { + "align": "full" + } + }, + "741da11b-703b-43ab-a9df-a7c1087d059a": { + "@type": "slate", + "plaintext": "Lists", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Lists" + } + ], + "type": "h2" + } + ] + }, + "89137ab1-3973-437f-be95-7e91586a4685": { + "@type": "image", + "align": "wide", + "copyright_and_sources": "Copyright: unsplash.com", + "description": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt.", + "size": "l", + "styles": { + "size:noprefix": "large" + }, + "title": "Title Image", + "url": "/content-types/image" + }, + "9313e80c-65d1-4d72-863f-fc1c17aba444": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi." + } + ], + "type": "p" + } + ] + }, + "b1cf3854-5836-4efc-897e-d003ceea19f0": { + "@type": "slate", + "plaintext": "Text Heading H2", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Text Heading H2 " + } + ], + "type": "h2" + } + ] + }, + "c08671c1-ca6c-4a5a-85b8-5c856bc112df": { + "@type": "slate", + "plaintext": "Inline Styles", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Inline Styles" + } + ], + "type": "h3" + } + ] + }, + "c95cd0fd-f914-4dca-9adb-f7438b0a3112": { + "@type": "slate", + "plaintext": "Text can be bold or italic .", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": "." + } + ], + "type": "p" + } + ] + }, + "d91f58fa-4634-4aac-bd1d-5f2fc4b338ca": { + "@type": "separator", + "styles": { + "align": "full" + } + }, + "e83fea00-1714-4de7-9d79-8d0e749639a9": { + "@type": "introduction", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.", + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. " + } + ], + "type": "p" + } + ] + }, + "fde62278-7792-46be-ba68-0d4d19a3a677": { + "@type": "slate", + "plaintext": "Text Heading H3", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Text Heading H3" + } + ], + "type": "h3" + } + ] + } + }, + "blocks_layout": { + "items": [ + "537a9742-95f1-4930-9df3-d38766f54a71", + "22f22002-2159-4e42-942a-8ebc6e930ed5", + "60a17689-6437-4a88-bf2c-76a62351ca5b", + "89137ab1-3973-437f-be95-7e91586a4685", + "e83fea00-1714-4de7-9d79-8d0e749639a9", + "d91f58fa-4634-4aac-bd1d-5f2fc4b338ca", + "b1cf3854-5836-4efc-897e-d003ceea19f0", + "43dd5fcf-3f52-469b-8ccc-57b785cf65b1", + "fde62278-7792-46be-ba68-0d4d19a3a677", + "9313e80c-65d1-4d72-863f-fc1c17aba444", + "741da11b-703b-43ab-a9df-a7c1087d059a", + "2e03fd8c-f334-400e-a3a9-d0446e3a1512", + "372b9489-5dc4-44a7-a7a9-649c2bc282db", + "c08671c1-ca6c-4a5a-85b8-5c856bc112df", + "c95cd0fd-f914-4dca-9adb-f7438b0a3112", + "2b54caa5-1c1a-40f2-aacd-84abce141e79", + "09460f92-723d-402d-a0a5-76a15f2678ad", + "3e036171-0a20-47d0-a06a-a7f493b65186" + ] + }, + "contributors": [], + "created": "2023-07-06T21:35:21+00:00", + "creators": [ + "admin" + ], + "description": "The table of contents block automatically generates a table of contents with links to the corresponding positions on the page from the headings used.", + "effective": "2023-07-06T18:35:00", + "exclude_from_nav": false, + "expires": null, + "id": "toc-block", + "is_folderish": true, + "language": "en", + "layout": "document_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2023-09-22T15:12:56+00:00", + "parent": { + "@id": "/block", + "@type": "Document", + "UID": "425695d2b7cb47e69374d6f211f17e38", + "description": "", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Blocks", + "type_title": "Page" + }, + "preview_caption": null, + "preview_image": { + "blob_path": "blobs/3906609d0456404ca7146f6aa1f12f32-preview_image/black-starry-night.jpg", + "content-type": "image/jpeg", + "filename": "black-starry-night.jpg", + "height": 1708, + "size": 693013, + "width": 2400 + }, + "review_state": "published", + "rights": "", + "subjects": [], + "title": "Table of Contents", + "type_title": "Page", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2023-07-06T21:35:21+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2023-07-06T21:35:22+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/23.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/23.json new file mode 100644 index 0000000..456ef2e --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/23.json @@ -0,0 +1,281 @@ +{ + "@id": "/block/video-block", + "@type": "Document", + "UID": "6d37dd19ef754344aaa254fa288e44b4", + "allow_discussion": false, + "blocks": { + "0d092cea-0518-428c-8aaa-c90a7cff183f": { + "@type": "slate", + "plaintext": "The Video-Block can be aligned to the left with text floating around it on the right side.", + "value": [ + { + "children": [ + { + "text": "The Video-Block can be aligned to the left with text floating around it on the right side." + } + ], + "type": "p" + } + ] + }, + "19a3d50a-a683-4e59-ac7c-d2ba2149cdd7": { + "@type": "video", + "align": "right", + "preview_image": "http://localhost:8080/Plone/content-types/image", + "styles": {}, + "url": "https://www.youtube.com/watch?v=_yaYy86jdk8" + }, + "205fa3ab-9358-46f3-81d6-4ea90dc8c290": { + "@type": "video", + "align": "left", + "preview_image": "http://localhost:8080/Plone/content-types/image", + "styles": {}, + "url": "https://www.youtube.com/watch?v=_yaYy86jdk8" + }, + "30c476a0-65fe-4e3a-895e-f59f6695929b": { + "@type": "slate", + "plaintext": "Video-Block (Standard Size)", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Video-Block (Standard Size)" + } + ], + "type": "h2" + } + ] + }, + "3664a470-22c4-47d9-8a30-89c34f1f7c99": { + "@type": "slate", + "plaintext": "Video-Block (Align: Left)", + "value": [ + { + "children": [ + { + "text": "Video-Block (Align: Left)" + } + ], + "type": "h3" + } + ] + }, + "38e88a05-b1b0-4958-af71-b3bd6e37297f": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi." + } + ], + "type": "p" + } + ] + }, + "42767d3a-3186-4e50-843d-3ea96c380943": { + "@type": "video", + "align": "wide", + "styles": {}, + "url": "https://www.youtube.com/watch?v=_yaYy86jdk8" + }, + "458576df-767e-4412-9e9f-2733e8334d5d": { + "@type": "separator", + "styles": { + "align": "full" + } + }, + "45a46c1b-f619-4e95-9b8c-932d524336af": { + "@type": "separator", + "styles": { + "align": "left" + } + }, + "49a61581-70ce-4810-84c2-1d91ac421197": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam. Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat quis nostrud exerci tation ullamcorper ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat quis Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam. Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam. Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat quis nostrud exerci tation ullamcorper ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat quis Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam. Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt" + } + ], + "type": "p" + } + ] + }, + "5212b457-984a-4666-ab67-7c9f6429b2a7": { + "@type": "slate", + "plaintext": "Video Block (Align Right)", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Video Block (Align Right)" + } + ], + "type": "h3" + } + ] + }, + "604e5248-8521-403d-9e5f-3f50d1229454": { + "@type": "title" + }, + "70d958cb-14b6-4689-84ad-cd3aa4ac19ee": { + "@type": "video", + "align": "center", + "styles": {}, + "url": "https://www.youtube.com/watch?v=_yaYy86jdk8" + }, + "7ace8ba6-13cb-4a5c-ab1c-fc6f8ce8737c": { + "@type": "slate", + "plaintext": "Video-Block (Full Width)", + "value": [ + { + "children": [ + { + "text": "Video-Block (Full Width)" + } + ], + "type": "h2" + } + ] + }, + "b75aeb62-6aca-440b-ab6d-66b063dbdab9": { + "@type": "slate", + "plaintext": "The Video-Block can be aligned to the right with text floating around it on the left side.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "The Video-Block can be aligned to the right with text floating around it on the left side." + } + ], + "type": "p" + } + ] + }, + "c97a926c-b2d2-4a73-9691-fc6e1aca6c52": { + "@type": "video", + "align": "full", + "styles": {}, + "url": "https://www.youtube.com/watch?v=_yaYy86jdk8" + }, + "c9eb00a4-23c8-4a13-a19d-9ee056646e16": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam. Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat quis nostrud exerci tation ullamcorper ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat quis Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam. Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat quis nostrud exerci tation ullamcorper ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat quis Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam." + } + ], + "type": "p" + } + ] + }, + "e6e1484a-c2c2-4788-a8c4-a26a979d18cd": { + "@type": "slate", + "plaintext": "Headline H2", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Headline H2" + } + ], + "type": "h3" + } + ] + } + }, + "blocks_layout": { + "items": [ + "604e5248-8521-403d-9e5f-3f50d1229454", + "7ace8ba6-13cb-4a5c-ab1c-fc6f8ce8737c", + "c97a926c-b2d2-4a73-9691-fc6e1aca6c52", + "30c476a0-65fe-4e3a-895e-f59f6695929b", + "42767d3a-3186-4e50-843d-3ea96c380943", + "458576df-767e-4412-9e9f-2733e8334d5d", + "e6e1484a-c2c2-4788-a8c4-a26a979d18cd", + "38e88a05-b1b0-4958-af71-b3bd6e37297f", + "70d958cb-14b6-4689-84ad-cd3aa4ac19ee", + "45a46c1b-f619-4e95-9b8c-932d524336af", + "3664a470-22c4-47d9-8a30-89c34f1f7c99", + "0d092cea-0518-428c-8aaa-c90a7cff183f", + "205fa3ab-9358-46f3-81d6-4ea90dc8c290", + "c9eb00a4-23c8-4a13-a19d-9ee056646e16", + "5212b457-984a-4666-ab67-7c9f6429b2a7", + "b75aeb62-6aca-440b-ab6d-66b063dbdab9", + "19a3d50a-a683-4e59-ac7c-d2ba2149cdd7", + "49a61581-70ce-4810-84c2-1d91ac421197" + ] + }, + "contributors": [], + "created": "2023-07-06T21:35:22+00:00", + "creators": [ + "admin" + ], + "description": "\nThe video block can contain videos from YouTube.", + "effective": "2023-07-06T18:35:00", + "exclude_from_nav": false, + "expires": null, + "id": "video-block", + "is_folderish": true, + "language": "en", + "layout": "document_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2023-09-22T15:16:09+00:00", + "parent": { + "@id": "/block", + "@type": "Document", + "UID": "425695d2b7cb47e69374d6f211f17e38", + "description": "", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Blocks", + "type_title": "Page" + }, + "preview_caption": null, + "preview_image": null, + "review_state": "published", + "rights": "", + "subjects": [], + "title": "Video", + "type_title": "Page", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2023-07-06T21:35:22+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2023-07-06T21:35:22+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/24.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/24.json new file mode 100644 index 0000000..fd9140f --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/24.json @@ -0,0 +1,95 @@ +{ + "@id": "/content-types", + "@type": "Document", + "UID": "e8178744e30a418b9a5768997bb29a19", + "allow_discussion": false, + "blocks": { + "7f1d39a2-a57c-4b2a-93bd-4dd30ee3f6cc": { + "@type": "title" + }, + "e3bb641a-0252-4fff-a6a0-80ce155d4ee5": { + "@type": "listing", + "headlineTag": "h2", + "styles": {}, + "variation": "default" + }, + "fdb1dfd1-6073-4ad0-a147-c0709c39734d": { + "@type": "slate", + "plaintext": "", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "" + } + ], + "type": "p" + } + ] + } + }, + "blocks_layout": { + "items": [ + "7f1d39a2-a57c-4b2a-93bd-4dd30ee3f6cc", + "e3bb641a-0252-4fff-a6a0-80ce155d4ee5", + "fdb1dfd1-6073-4ad0-a147-c0709c39734d" + ] + }, + "contributors": [], + "created": "2023-09-22T14:05:45+00:00", + "creators": [ + "admin" + ], + "description": "This section has a sample of content types available in this site.", + "effective": "2023-09-22T16:09:00", + "exclude_from_nav": false, + "expires": null, + "id": "content-types", + "is_folderish": true, + "language": "en", + "layout": "document_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2024-03-09T09:14:28+00:00", + "parent": { + "@id": "/", + "@type": "Plone Site", + "UID": "87f1f0ea555d423698c3ce09e17d7873", + "description": "Site created with a new Plone Distribution", + "title": "Welcome to Plone 6", + "type_title": "Plone Site" + }, + "preview_caption": null, + "preview_image": null, + "review_state": "published", + "rights": "", + "subjects": [ + "main folder" + ], + "title": "Content Types", + "type_title": "Page", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2023-09-22T14:05:45+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2023-09-22T14:09:06+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/25.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/25.json new file mode 100644 index 0000000..7829e75 --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/25.json @@ -0,0 +1,144 @@ +{ + "@id": "/content-types/copy_of_event", + "@type": "Event", + "UID": "a2f2c6a524094c9482cc5384883fd8e7", + "allow_discussion": false, + "attendees": [], + "blocks": { + "1a9dbeac-4f8e-4a75-9859-fd8012bd2c1a": { + "@type": "slate" + }, + "4564e5bf-3f00-491d-80f9-730d17da6990": { + "@type": "slate", + "plaintext": "Percolator and extraction press luwak press aroma foam eu panna spoon espresso iced sit americano. Saucer beans kopi froth to au lait dark panna caf\u00e9 iced cup instant au lait. Id origin decaffeinated aromatic in rich sit mocha caramelization caf\u00e9 doppio spoon. Strong steamed crema mountain ristretto coffee sweet black aromatic white beans shop. Id pumpkin extraction robusta est white extra organic panna as turkish.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Percolator and extraction press luwak press aroma foam eu panna spoon espresso iced sit americano. Saucer beans kopi froth to au lait dark panna caf\u00e9 iced cup instant au lait. Id origin decaffeinated aromatic in rich sit mocha caramelization caf\u00e9 doppio spoon. Strong steamed crema mountain ristretto coffee sweet black aromatic white beans shop. Id pumpkin extraction robusta est white extra organic panna as turkish." + } + ], + "type": "p" + } + ] + }, + "7cc3f9dc-c91b-41ec-8a51-ce2cf7affe17": { + "@type": "eventMetadata", + "fixed": true, + "required": true + }, + "b8adc074-62bd-42c1-98de-51d3551b4148": { + "@type": "slate", + "plaintext": "", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "" + } + ], + "type": "p" + } + ] + }, + "d634fc64-0178-4e61-904c-c9963f8c0c7d": { + "@type": "introduction", + "plaintext": "Wings fair wings doppio sit irish americano gal\u00e3o eu variety affogato.", + "value": [ + { + "children": [ + { + "text": "Wings fair wings doppio sit irish americano gal\u00e3o eu variety affogato." + } + ], + "type": "p" + } + ] + }, + "dd8d27df-ded3-49f5-afdf-239623a6adba": { + "@type": "title" + } + }, + "blocks_layout": { + "items": [ + "dd8d27df-ded3-49f5-afdf-239623a6adba", + "d634fc64-0178-4e61-904c-c9963f8c0c7d", + "b8adc074-62bd-42c1-98de-51d3551b4148", + "4564e5bf-3f00-491d-80f9-730d17da6990", + "7cc3f9dc-c91b-41ec-8a51-ce2cf7affe17", + "1a9dbeac-4f8e-4a75-9859-fd8012bd2c1a" + ] + }, + "changeNote": "", + "contact_email": null, + "contact_name": null, + "contact_phone": null, + "contributors": [], + "created": "2024-03-07T16:03:03+00:00", + "creators": [ + "admin" + ], + "description": "Events can have recurrence :)", + "effective": "2024-03-07T17:09:00", + "end": "2024-02-29T19:00:00+00:00", + "event_url": null, + "exclude_from_nav": false, + "expires": null, + "id": "copy_of_event", + "is_folderish": true, + "language": "en", + "layout": "event_view", + "location": null, + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2024-03-08T15:13:36+00:00", + "open_end": false, + "parent": { + "@id": "/content-types", + "@type": "Document", + "UID": "e8178744e30a418b9a5768997bb29a19", + "description": "This section has a sample of content types available in this site.", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Content Types", + "type_title": "Page" + }, + "preview_caption": null, + "preview_image": null, + "recurrence": "DTSTART:20240228T230000Z\nRRULE:FREQ=MONTHLY;INTERVAL=1;COUNT=12;WKST=MO;BYDAY=-1TH", + "review_state": "published", + "rights": "", + "start": "2024-02-28T23:00:00+00:00", + "subjects": [], + "sync_uid": null, + "title": "Another Event", + "type_title": "Event", + "version": "current", + "versioning_enabled": true, + "whole_day": true, + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2024-03-07T16:03:03+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2024-03-07T16:09:12+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/26.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/26.json new file mode 100644 index 0000000..3adda5a --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/26.json @@ -0,0 +1,118 @@ +{ + "@id": "/content-types/copy_of_news-item", + "@type": "News Item", + "UID": "af85ff98cd6446eebcba56305ed89fed", + "allow_discussion": false, + "blocks": { + "6db5aa18-6fd8-4efe-9bc6-9cd6fc1dd0be": { + "@type": "slate", + "plaintext": "Ristretto so chicory skinny ristretto au decaffeinated sugar that spoon shop crema ut pot lungo. Flavour that milk brewed flavour whipped kopi black and robusta. Bar sugar americano eu froth variety brewed acerbic steamed. Aroma est milk doppio frappuccino half cream filter french froth luwak. Acerbic plunger au barista flavour in froth trade.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Ristretto so chicory skinny ristretto au decaffeinated sugar that spoon shop crema ut pot lungo. Flavour that milk brewed flavour whipped kopi black and robusta. Bar sugar americano eu froth variety brewed acerbic steamed. Aroma est milk doppio frappuccino half cream filter french froth luwak. Acerbic plunger au barista flavour in froth trade." + } + ], + "type": "p" + } + ] + }, + "8c686422-757e-4519-ae6a-ffcb4d107e22": { + "@type": "introduction", + "plaintext": "Cinnamon skinny medium panna americano spice affogato froth frappuccino that.", + "value": [ + { + "children": [ + { + "text": "Cinnamon skinny medium panna americano spice affogato froth frappuccino that." + } + ], + "type": "p" + } + ] + }, + "944cfb1b-3ef7-425f-a5ef-eb9242429bfd": { + "@type": "leadimage", + "align": "center" + }, + "a0ac0f60-667b-4b22-a49f-989f2ae8c3cc": { + "@type": "title" + } + }, + "blocks_layout": { + "items": [ + "a0ac0f60-667b-4b22-a49f-989f2ae8c3cc", + "8c686422-757e-4519-ae6a-ffcb4d107e22", + "944cfb1b-3ef7-425f-a5ef-eb9242429bfd", + "6db5aa18-6fd8-4efe-9bc6-9cd6fc1dd0be" + ] + }, + "changeNote": "", + "contributors": [], + "created": "2024-03-07T16:07:50+00:00", + "creators": [ + "admin" + ], + "description": "Cinnamon skinny medium panna americano spice affogato froth frappuccino that.", + "effective": "2024-03-07T17:09:00", + "exclude_from_nav": false, + "expires": null, + "id": "copy_of_news-item", + "image": { + "blob_path": "blobs/af85ff98cd6446eebcba56305ed89fed-image/sergio-martinez-rhNJJ4eD2zk-unsplash.jpg", + "content-type": "image/jpeg", + "filename": "sergio-martinez-rhNJJ4eD2zk-unsplash.jpg", + "height": 3456, + "size": 2231807, + "width": 5184 + }, + "image_caption": null, + "is_folderish": true, + "language": "en", + "layout": "newsitem_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2024-03-08T15:09:29+00:00", + "parent": { + "@id": "/content-types", + "@type": "Document", + "UID": "e8178744e30a418b9a5768997bb29a19", + "description": "This section has a sample of content types available in this site.", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Content Types", + "type_title": "Page" + }, + "review_state": "published", + "rights": "", + "subjects": [], + "title": "Another News Item", + "type_title": "News Item", + "version": "current", + "versioning_enabled": true, + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2024-03-07T16:07:50+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2024-03-07T16:09:12+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/27.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/27.json new file mode 100644 index 0000000..c7cf76c --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/27.json @@ -0,0 +1,135 @@ +{ + "@id": "/content-types/copy_of_page", + "@type": "Document", + "UID": "2e8ed811e2954e9882d561be8b25cb8c", + "allow_discussion": false, + "blocks": { + "1923851d-b62e-45b7-8425-aa047aaa6e76": { + "@type": "slate", + "plaintext": "Organic qui acerbic dark milk sit decaffeinated origin siphon. Affogato lait a mountain irish plunger spoon irish that cortado pot half single. Decaffeinated white carajillo lait foam kopi sugar blue caf\u00e9 coffee single variety saucer wings steamed. Cappuccino macchiato spice caramelization saucer half mountain viennese. Froth affogato go robusta beans carajillo dark shot qui fair mocha.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Organic qui acerbic dark milk sit decaffeinated origin siphon. Affogato lait a mountain irish plunger spoon irish that cortado pot half single. Decaffeinated white carajillo lait foam kopi sugar blue caf\u00e9 coffee single variety saucer wings steamed. Cappuccino macchiato spice caramelization saucer half mountain viennese. Froth affogato go robusta beans carajillo dark shot qui fair mocha." + } + ], + "type": "p" + } + ] + }, + "2e449c25-d897-4c7a-b5ac-793175ea55ee": { + "@type": "description" + }, + "603e7230-53ed-4364-977d-4bfd11809a35": { + "@type": "slate", + "plaintext": "Carajillo cappuccino grinder whipped luwak filter caf\u00e9 blue coffee affogato cultivar spoon grounds. Carajillo viennese lait cream single pot lait extraction. Luwak french so instant latte seasonal caramelization carajillo pot medium. Mazagran milk cultivar barista caffeine medium breve ristretto cortado crema brewed aged extraction irish. Mazagran pumpkin arabica spice aroma sit caf\u00e9 origin redeye as chicory cream irish turkish cream.", + "value": [ + { + "children": [ + { + "text": "Carajillo cappuccino grinder whipped luwak filter caf\u00e9 blue coffee affogato cultivar spoon grounds. Carajillo viennese lait cream single pot lait extraction. Luwak french so instant latte seasonal caramelization carajillo pot medium. Mazagran milk cultivar barista caffeine medium breve ristretto cortado crema brewed aged extraction irish. Mazagran pumpkin arabica spice aroma sit caf\u00e9 origin redeye as chicory cream irish turkish cream." + } + ], + "type": "p" + } + ] + }, + "7ea2d08f-0fe5-493e-bbd1-d53f5bd38bee": { + "@type": "slate", + "plaintext": "And carajillo aromatic affogato instant cream grinder kopi panna. Qui robusta milk and dripper variety caffeine grinder mazagran irish chicory grounds. Filter cream con so robust steamed wings coffee. Spoon panna lungo skinny brewed qui aroma aged id grinder. Spoon aromatic so decaffeinated at dark acerbic siphon and redeye at mug.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "And carajillo aromatic affogato instant cream grinder kopi panna. Qui robusta milk and dripper variety caffeine grinder mazagran irish chicory grounds. Filter cream con so robust steamed wings coffee. Spoon panna lungo skinny brewed qui aroma aged id grinder. Spoon aromatic so decaffeinated at dark acerbic siphon and redeye at mug." + } + ], + "type": "p" + } + ] + }, + "af503055-b17f-4393-8f76-ee11b7b1aae8": { + "@type": "title" + }, + "fcb94dd6-652b-4b79-b823-7e42f1a75228": { + "@type": "image", + "align": "right", + "credit": {}, + "description": "", + "image_field": "image", + "size": "l", + "title": "penguin4.jpg", + "url": "../../resolveuid/0c351dd841c34c6da9c313b1bc551e34" + } + }, + "blocks_layout": { + "items": [ + "af503055-b17f-4393-8f76-ee11b7b1aae8", + "2e449c25-d897-4c7a-b5ac-793175ea55ee", + "7ea2d08f-0fe5-493e-bbd1-d53f5bd38bee", + "fcb94dd6-652b-4b79-b823-7e42f1a75228", + "603e7230-53ed-4364-977d-4bfd11809a35", + "1923851d-b62e-45b7-8425-aa047aaa6e76" + ] + }, + "contributors": [], + "created": "2024-03-07T16:01:59+00:00", + "creators": [ + "admin" + ], + "description": "Cultivar sweet irish and irish flavour cinnamon foam crema percolator caffeine aftertaste mountain.", + "effective": "2024-03-07T17:09:00", + "exclude_from_nav": false, + "expires": null, + "id": "copy_of_page", + "is_folderish": true, + "language": "en", + "layout": "document_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2024-03-08T15:09:03+00:00", + "parent": { + "@id": "/content-types", + "@type": "Document", + "UID": "e8178744e30a418b9a5768997bb29a19", + "description": "This section has a sample of content types available in this site.", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Content Types", + "type_title": "Page" + }, + "preview_caption": null, + "preview_image": null, + "review_state": "published", + "rights": "", + "subjects": [], + "title": "Another Page", + "type_title": "Page", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2024-03-07T16:01:59+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2024-03-07T16:09:11+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/28.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/28.json new file mode 100644 index 0000000..1d9afbf --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/28.json @@ -0,0 +1,114 @@ +{ + "@id": "/content-types/event", + "@type": "Event", + "UID": "7adc12f0e7604982a6cdcb9437bccf66", + "allow_discussion": false, + "attendees": [], + "blocks": { + "6e6979eb-af21-466f-b2de-3148144ac950": { + "@type": "slate", + "plaintext": "", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "" + } + ], + "type": "p" + } + ] + }, + "b539ed36-442b-4c7d-8b9b-8af01963c206": { + "@type": "eventMetadata" + }, + "d3f1c443-583f-4e8e-a682-3bf25752a300": { + "@type": "title" + } + }, + "blocks_layout": { + "items": [ + "d3f1c443-583f-4e8e-a682-3bf25752a300", + "b539ed36-442b-4c7d-8b9b-8af01963c206", + "6e6979eb-af21-466f-b2de-3148144ac950" + ] + }, + "changeNote": "", + "contact_email": "m.mustermann@plone.com", + "contact_name": "Max Mustermann", + "contact_phone": "+49 1234 567-890", + "contributors": [], + "created": "2023-07-06T21:35:07+00:00", + "creators": [ + "admin" + ], + "description": "The event content type can be used to display an event on the website.", + "effective": "2023-07-06T18:35:00", + "end": "2023-12-31T12:00:00+00:00", + "event_url": "http://www.musterevents.com", + "exclude_from_nav": false, + "expires": null, + "id": "event", + "is_folderish": true, + "language": "en", + "layout": "event_view", + "location": "Musterhausener Landstrasse 134 Standort E123 67111 Musterhausen", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2024-02-14T11:02:26+00:00", + "open_end": false, + "parent": { + "@id": "/content-types", + "@type": "Document", + "UID": "e8178744e30a418b9a5768997bb29a19", + "description": "This section has a sample of content types available in this site.", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Content Types", + "type_title": "Page" + }, + "preview_caption": null, + "preview_image": { + "blob_path": "blobs/7adc12f0e7604982a6cdcb9437bccf66-preview_image/event.svg", + "content-type": "image/svg+xml", + "filename": "event.svg", + "height": 36, + "size": 703, + "width": 36 + }, + "recurrence": null, + "review_state": "published", + "rights": "", + "start": "2023-01-01T11:00:00+00:00", + "subjects": [], + "sync_uid": null, + "title": "Event", + "type_title": "Event", + "version": "current", + "versioning_enabled": true, + "whole_day": false, + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2023-07-06T21:35:07+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2023-07-06T21:35:07+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/29.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/29.json new file mode 100644 index 0000000..6fa1bce --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/29.json @@ -0,0 +1,48 @@ +{ + "@id": "/content-types/example-image.jpg", + "@type": "Image", + "UID": "6cca02c5580d4f7c865af74835ceab9d", + "allow_discussion": false, + "contributors": [], + "created": "2024-03-07T16:06:03+00:00", + "creators": [ + "admin" + ], + "description": "", + "effective": "2024-03-08T12:40:00", + "exclude_from_nav": false, + "expires": null, + "id": "example-image.jpg", + "image": { + "blob_path": "blobs/6cca02c5580d4f7c865af74835ceab9d-image/danielle-barnes-kGNaS3lYCso-unsplash.jpg", + "content-type": "image/jpeg", + "filename": "danielle-barnes-kGNaS3lYCso-unsplash.jpg", + "height": 3456, + "size": 893777, + "width": 5184 + }, + "is_folderish": false, + "language": "en", + "layout": "image_view", + "lock": {}, + "modified": "2024-03-08T15:08:21+00:00", + "parent": { + "@id": "/content-types", + "@type": "Document", + "UID": "e8178744e30a418b9a5768997bb29a19", + "description": "This section has a sample of content types available in this site.", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Content Types", + "type_title": "Page" + }, + "review_state": null, + "rights": "", + "subjects": [], + "title": "Image", + "type_title": "Image", + "version": "current", + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/3.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/3.json new file mode 100644 index 0000000..9226ec0 --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/3.json @@ -0,0 +1,2325 @@ +{ + "@id": "/block/block-accordion", + "@type": "Document", + "UID": "f8cd4a2d8d7c4703b4e41d2093b21aed", + "allow_discussion": false, + "blocks": { + "41a82a93-c00c-4a40-bac8-53a3e3420c8e": { + "@type": "accordion", + "collapsed": false, + "data": { + "blocks": { + "262a2478-3a63-445a-aab7-edf55cceebcf": { + "@type": "accordionPanel", + "blocks": { + "c9580c7a-ab67-44f7-8532-59a4ba9fd846": { + "@type": "listing", + "headlineTag": "h2", + "querystring": { + "limit": "3", + "query": [ + { + "i": "Description", + "o": "plone.app.querystring.operation.string.contains", + "v": "block" + } + ], + "sort_order": "descending", + "sort_order_boolean": true + }, + "styles": {}, + "variation": "summary" + } + }, + "blocks_layout": { + "items": [ + "c9580c7a-ab67-44f7-8532-59a4ba9fd846" + ] + }, + "title": "Accordion with listing" + }, + "b58c92b4-6604-4408-9039-a147965fa4bd": { + "@type": "accordionPanel", + "blocks": { + "1b91cfac-d8a1-4327-9896-e8e3ee7a9c03": { + "@type": "teaser", + "description": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper ", + "head_title": null, + "href": [ + { + "@id": "../../resolveuid/eec82559bf3242a6be4d43bc2096f399", + "@type": "Image", + "Description": " The Image content type can be used to upload an image in various formats (JPG, GIF, PNG, SVG). The uploaded image should always have a high resolution so that it can be used flexibly, for example as a banner image. Plone automatically delivers the images in the best scaling, so there is no need to scale images down manually.", + "Title": "Image - Light", + "getRemoteUrl": null, + "hasPreviewImage": null, + "head_title": null, + "image_field": "image", + "title": "Image - Light" + } + ], + "styles": { + "align": "left" + }, + "title": "Teaser Title H2" + }, + "2b7a6783-7323-4fbd-b0a1-3d304b8a526a": { + "@type": "teaser", + "description": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper ", + "head_title": null, + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "Title": "Page", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Page" + } + ], + "styles": { + "align": "right" + }, + "title": "Teaser Title H2" + }, + "eb600a9b-7400-4b4e-bb40-70ddb6911749": { + "@type": "teaser", + "description": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo", + "head_title": null, + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "Title": "Page", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Page" + } + ], + "styles": { + "align": "center" + }, + "title": "Teaser Title H2" + } + }, + "blocks_layout": { + "items": [ + "eb600a9b-7400-4b4e-bb40-70ddb6911749", + "1b91cfac-d8a1-4327-9896-e8e3ee7a9c03", + "2b7a6783-7323-4fbd-b0a1-3d304b8a526a" + ] + }, + "title": "Accordion with teaser" + }, + "bc2c120e-51df-4c47-b4d0-5a11311d020d": { + "@type": "accordionPanel", + "blocks": { + "c85ec1d2-f371-4ed4-be65-8fa0a091b833": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet." + } + ], + "type": "p" + } + ] + } + }, + "blocks_layout": { + "items": [ + "c85ec1d2-f371-4ed4-be65-8fa0a091b833" + ] + }, + "title": "Accordion with text" + }, + "d2168440-888d-4081-8409-b59392abc189": { + "@type": "accordionPanel", + "blocks": { + "05ee41f0-e8b8-4181-a773-366ca209dbc8": { + "@type": "slate", + "plaintext": "Text Heading H3", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Text Heading H3" + } + ], + "type": "h2" + } + ] + }, + "1060e842-2b14-43dc-9e43-c25022029a94": { + "@type": "image", + "align": "right", + "credit": {}, + "description": " The Image content type can be used to upload an image in various formats (JPG, GIF, PNG, SVG). The uploaded image should always have a high resolution so that it can be used flexibly, for example as a banner image. Plone automatically delivers the images in the best scaling, so there is no need to scale images down manually.", + "image_field": "image", + "size": "m", + "styles": { + "size:noprefix": "medium" + }, + "title": "Image - Light", + "url": "../../resolveuid/eec82559bf3242a6be4d43bc2096f399" + }, + "11af3b59-7720-4875-b0b9-90be5807d476": { + "@type": "separator", + "styles": { + "align": "left" + } + }, + "1becedb6-65f6-4bee-9b36-5c38deaa4141": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore blandit praesent luptatum zzril qui Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore blandit praesent luptatum zzril qui Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi." + } + ], + "type": "p" + } + ] + }, + "1da28f76-9d9c-4a98-af0b-2e8c7abc1c35": { + "@type": "separator", + "styles": { + "align": "left" + } + }, + "1eb2924b-8de0-4152-8ae0-50eb27c3fad8": { + "@type": "slate", + "plaintext": "Text Heading H3", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Text Heading H3" + } + ], + "type": "h2" + } + ] + }, + "6e94c839-855c-43ff-92fa-a2f9dfac2bc9": { + "@type": "image", + "align": "center", + "credit": {}, + "description": " The Image content type can be used to upload an image in various formats (JPG, GIF, PNG, SVG). The uploaded image should always have a high resolution so that it can be used flexibly, for example as a banner image. Plone automatically delivers the images in the best scaling, so there is no need to scale images down manually.", + "image_field": "image", + "size": "l", + "title": "Image", + "url": "../../resolveuid/970ec24c76784c66a06d8c8d8b6522b2" + }, + "725bfc52-49f6-4e70-8d11-48c537cfb5ff": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore blandit praesent luptatum zzril qui Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore blandit praesent luptatum zzril qui Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi." + } + ], + "type": "p" + } + ] + }, + "76ab99ce-789c-41b2-9df8-4322c8c8c1ad": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore blandit praesent luptatum zzril qui Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore blandit praesent luptatum zzril qui Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi." + } + ], + "type": "p" + } + ] + }, + "773db1b3-7504-40e2-bf09-ce96e31249b2": { + "@type": "separator", + "styles": { + "align": "left" + } + }, + "89d2ea6e-b8fb-4d13-a251-37cc3bbb5961": { + "@type": "image", + "align": "left", + "credit": {}, + "description": " The Image content type can be used to upload an image in various formats (JPG, GIF, PNG, SVG). The uploaded image should always have a high resolution so that it can be used flexibly, for example as a banner image. Plone automatically delivers the images in the best scaling, so there is no need to scale images down manually.", + "image_field": "image", + "size": "s", + "styles": { + "size:noprefix": "small" + }, + "title": "Image - Light", + "url": "../../resolveuid/eec82559bf3242a6be4d43bc2096f399" + }, + "8f1ad076-32b9-432b-9308-8b0972a8f57e": { + "@type": "image", + "align": "right", + "credit": {}, + "description": " The Image content type can be used to upload an image in various formats (JPG, GIF, PNG, SVG). The uploaded image should always have a high resolution so that it can be used flexibly, for example as a banner image. Plone automatically delivers the images in the best scaling, so there is no need to scale images down manually.", + "image_field": "image", + "size": "s", + "styles": { + "size:noprefix": "small" + }, + "title": "Image", + "url": "../../resolveuid/970ec24c76784c66a06d8c8d8b6522b2" + }, + "b4536f61-92a1-4b65-aa40-c142d799f0ba": { + "@type": "slate", + "plaintext": "Text Heading H3", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Text Heading H3" + } + ], + "type": "h2" + } + ] + }, + "c0b3b08e-c350-43e6-84e9-787903d91f8c": { + "@type": "image", + "align": "left", + "credit": {}, + "description": " The Image content type can be used to upload an image in various formats (JPG, GIF, PNG, SVG). The uploaded image should always have a high resolution so that it can be used flexibly, for example as a banner image. Plone automatically delivers the images in the best scaling, so there is no need to scale images down manually.", + "image_field": "image", + "size": "m", + "styles": { + "size:noprefix": "medium" + }, + "title": "Image", + "url": "../../resolveuid/970ec24c76784c66a06d8c8d8b6522b2" + }, + "c3344b1c-89b9-4119-993e-58ef6bece880": { + "@type": "slate", + "plaintext": "Text Heading H3", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Text Heading H3" + } + ], + "type": "h2" + } + ] + }, + "c3d2c41a-8e53-45a4-b212-cb54dad6045d": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore blandit praesent luptatum zzril qui Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore blandit praesent luptatum zzril qui Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi." + } + ], + "type": "p" + } + ] + }, + "d754b95e-7fa8-4cbd-9997-f2bb6cde26df": { + "@type": "image", + "align": "left", + "credit": {}, + "description": " The Image content type can be used to upload an image in various formats (JPG, GIF, PNG, SVG). The uploaded image should always have a high resolution so that it can be used flexibly, for example as a banner image. Plone automatically delivers the images in the best scaling, so there is no need to scale images down manually.", + "image_field": "image", + "size": "l", + "title": "Image - Light", + "url": "../../resolveuid/eec82559bf3242a6be4d43bc2096f399" + }, + "d77557e0-793a-408f-9940-a0ad80d3be8f": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore blandit praesent luptatum zzril qui Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore blandit praesent luptatum zzril qui Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi." + } + ], + "type": "p" + } + ] + }, + "da31d046-9d5f-48db-9368-c5a943c35aa1": { + "@type": "slate", + "plaintext": "Text Heading H3", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Text Heading H3" + } + ], + "type": "h2" + } + ] + }, + "ee0d02f1-ff2c-4dee-a79f-a1ed105cc84c": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi." + } + ], + "type": "p" + } + ] + } + }, + "blocks_layout": { + "items": [ + "6e94c839-855c-43ff-92fa-a2f9dfac2bc9", + "1da28f76-9d9c-4a98-af0b-2e8c7abc1c35", + "ee0d02f1-ff2c-4dee-a79f-a1ed105cc84c", + "d754b95e-7fa8-4cbd-9997-f2bb6cde26df", + "b4536f61-92a1-4b65-aa40-c142d799f0ba", + "725bfc52-49f6-4e70-8d11-48c537cfb5ff", + "773db1b3-7504-40e2-bf09-ce96e31249b2", + "c0b3b08e-c350-43e6-84e9-787903d91f8c", + "1eb2924b-8de0-4152-8ae0-50eb27c3fad8", + "c3d2c41a-8e53-45a4-b212-cb54dad6045d", + "1060e842-2b14-43dc-9e43-c25022029a94", + "da31d046-9d5f-48db-9368-c5a943c35aa1", + "1becedb6-65f6-4bee-9b36-5c38deaa4141", + "11af3b59-7720-4875-b0b9-90be5807d476", + "89d2ea6e-b8fb-4d13-a251-37cc3bbb5961", + "05ee41f0-e8b8-4181-a773-366ca209dbc8", + "d77557e0-793a-408f-9940-a0ad80d3be8f", + "8f1ad076-32b9-432b-9308-8b0972a8f57e", + "c3344b1c-89b9-4119-993e-58ef6bece880", + "76ab99ce-789c-41b2-9df8-4322c8c8c1ad" + ] + }, + "title": "Accordion with image" + }, + "d80e4d6f-b708-4f45-8c3a-fc8f8ccc07c0": { + "@type": "accordionPanel", + "blocks": { + "f56375fe-70a1-4ac1-a94c-adc9998db548": { + "@type": "slateTable", + "styles": { + "backgroundColor": "transparent" + }, + "table": { + "basic": false, + "celled": true, + "compact": false, + "fixed": true, + "hideHeaders": false, + "inverted": false, + "rows": [ + { + "cells": [ + { + "key": "f446n", + "type": "header", + "value": [ + { + "children": [ + { + "text": "Title Tablehead " + } + ], + "type": "p" + } + ] + }, + { + "key": "26qcg", + "type": "header", + "value": [ + { + "children": [ + { + "text": "Title Tablehead " + } + ], + "type": "p" + } + ] + }, + { + "key": "dhv72", + "type": "header", + "value": [ + { + "children": [ + { + "text": "Title Tablehead " + } + ], + "type": "p" + } + ] + } + ], + "key": "dda2b" + }, + { + "cells": [ + { + "key": "52vlv", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": " " + } + ], + "type": "p" + } + ] + }, + { + "key": "5ko7h", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": " " + } + ], + "type": "p" + } + ] + }, + { + "key": "878jv", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": " " + } + ], + "type": "p" + } + ] + } + ], + "key": "3ihrs" + }, + { + "cells": [ + { + "key": "754if", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": " " + } + ], + "type": "p" + } + ] + }, + { + "key": "1bjdt", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": " " + } + ], + "type": "p" + } + ] + }, + { + "key": "32g6k", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": " " + } + ], + "type": "p" + } + ] + } + ], + "key": "au6so" + }, + { + "cells": [ + { + "key": "5fhem", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": " " + } + ], + "type": "p" + } + ] + }, + { + "key": "e78dh", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": " " + } + ], + "type": "p" + } + ] + }, + { + "key": "feacr", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": " " + } + ], + "type": "p" + } + ] + } + ], + "key": "fqhgk" + } + ], + "striped": true + } + } + }, + "blocks_layout": { + "items": [ + "f56375fe-70a1-4ac1-a94c-adc9998db548" + ] + }, + "title": "Accordion with table" + } + }, + "blocks_layout": { + "items": [ + "bc2c120e-51df-4c47-b4d0-5a11311d020d", + "d2168440-888d-4081-8409-b59392abc189", + "b58c92b4-6604-4408-9039-a147965fa4bd", + "262a2478-3a63-445a-aab7-edf55cceebcf", + "d80e4d6f-b708-4f45-8c3a-fc8f8ccc07c0" + ] + } + }, + "filtering": false, + "non_exclusive": false, + "right_arrows": true, + "styles": {} + }, + "8f68209e-220e-4230-9d42-8b0602573bd9": { + "@type": "accordion", + "collapsed": false, + "data": { + "blocks": { + "262a2478-3a63-445a-aab7-edf55cceebcf": { + "@type": "accordionPanel", + "blocks": { + "c9580c7a-ab67-44f7-8532-59a4ba9fd846": { + "@type": "listing", + "headlineTag": "h2", + "querystring": { + "limit": "3", + "query": [ + { + "i": "Description", + "o": "plone.app.querystring.operation.string.contains", + "v": "block" + } + ], + "sort_order": "descending", + "sort_order_boolean": true + }, + "styles": {}, + "variation": "summary" + } + }, + "blocks_layout": { + "items": [ + "c9580c7a-ab67-44f7-8532-59a4ba9fd846" + ] + }, + "title": "Accordion with listing" + }, + "39f75787-bd7a-42dc-ab40-a6c9dfd2a8f1": { + "@type": "accordionPanel", + "blocks": { + "afacd5e4-5914-46b6-b9f9-ebd8bbda9d35": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet." + } + ], + "type": "p" + } + ] + } + }, + "blocks_layout": { + "items": [ + "afacd5e4-5914-46b6-b9f9-ebd8bbda9d35" + ] + }, + "title": "Accordion with text" + }, + "b58c92b4-6604-4408-9039-a147965fa4bd": { + "@type": "accordionPanel", + "blocks": { + "1b91cfac-d8a1-4327-9896-e8e3ee7a9c03": { + "@type": "teaser", + "description": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper ", + "head_title": null, + "href": [ + { + "@id": "../../resolveuid/eec82559bf3242a6be4d43bc2096f399", + "@type": "Image", + "Description": " The Image content type can be used to upload an image in various formats (JPG, GIF, PNG, SVG). The uploaded image should always have a high resolution so that it can be used flexibly, for example as a banner image. Plone automatically delivers the images in the best scaling, so there is no need to scale images down manually.", + "Title": "Image - Light", + "getRemoteUrl": null, + "hasPreviewImage": null, + "head_title": null, + "image_field": "image", + "title": "Image - Light" + } + ], + "styles": { + "align": "left" + }, + "title": "Teaser Title H2" + }, + "2b7a6783-7323-4fbd-b0a1-3d304b8a526a": { + "@type": "teaser", + "description": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper ", + "head_title": null, + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "Title": "Page", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Page" + } + ], + "styles": { + "align": "right" + }, + "title": "Teaser Title H2" + }, + "eb600a9b-7400-4b4e-bb40-70ddb6911749": { + "@type": "teaser", + "description": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo", + "head_title": null, + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "Title": "Page", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Page" + } + ], + "styles": { + "align": "center" + }, + "title": "Teaser Title H2" + } + }, + "blocks_layout": { + "items": [ + "eb600a9b-7400-4b4e-bb40-70ddb6911749", + "1b91cfac-d8a1-4327-9896-e8e3ee7a9c03", + "2b7a6783-7323-4fbd-b0a1-3d304b8a526a" + ] + }, + "title": "Accordion with teaser" + }, + "d2168440-888d-4081-8409-b59392abc189": { + "@type": "accordionPanel", + "blocks": { + "05ee41f0-e8b8-4181-a773-366ca209dbc8": { + "@type": "slate", + "plaintext": "Text Heading H3", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Text Heading H3" + } + ], + "type": "h2" + } + ] + }, + "1060e842-2b14-43dc-9e43-c25022029a94": { + "@type": "image", + "align": "right", + "credit": {}, + "description": " The Image content type can be used to upload an image in various formats (JPG, GIF, PNG, SVG). The uploaded image should always have a high resolution so that it can be used flexibly, for example as a banner image. Plone automatically delivers the images in the best scaling, so there is no need to scale images down manually.", + "image_field": "image", + "size": "m", + "styles": { + "size:noprefix": "medium" + }, + "title": "Image - Light", + "url": "../../resolveuid/eec82559bf3242a6be4d43bc2096f399" + }, + "11af3b59-7720-4875-b0b9-90be5807d476": { + "@type": "separator", + "styles": { + "align": "left" + } + }, + "1becedb6-65f6-4bee-9b36-5c38deaa4141": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore blandit praesent luptatum zzril qui Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore blandit praesent luptatum zzril qui Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi." + } + ], + "type": "p" + } + ] + }, + "1da28f76-9d9c-4a98-af0b-2e8c7abc1c35": { + "@type": "separator", + "styles": { + "align": "left" + } + }, + "1eb2924b-8de0-4152-8ae0-50eb27c3fad8": { + "@type": "slate", + "plaintext": "Text Heading H3", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Text Heading H3" + } + ], + "type": "h2" + } + ] + }, + "6e94c839-855c-43ff-92fa-a2f9dfac2bc9": { + "@type": "image", + "align": "center", + "credit": {}, + "description": " The Image content type can be used to upload an image in various formats (JPG, GIF, PNG, SVG). The uploaded image should always have a high resolution so that it can be used flexibly, for example as a banner image. Plone automatically delivers the images in the best scaling, so there is no need to scale images down manually.", + "image_field": "image", + "size": "l", + "title": "Image - Light", + "url": "../../resolveuid/eec82559bf3242a6be4d43bc2096f399" + }, + "725bfc52-49f6-4e70-8d11-48c537cfb5ff": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore blandit praesent luptatum zzril qui Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore blandit praesent luptatum zzril qui Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi." + } + ], + "type": "p" + } + ] + }, + "76ab99ce-789c-41b2-9df8-4322c8c8c1ad": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore blandit praesent luptatum zzril qui Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore blandit praesent luptatum zzril qui Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi." + } + ], + "type": "p" + } + ] + }, + "773db1b3-7504-40e2-bf09-ce96e31249b2": { + "@type": "separator", + "styles": { + "align": "left" + } + }, + "89d2ea6e-b8fb-4d13-a251-37cc3bbb5961": { + "@type": "image", + "align": "left", + "credit": {}, + "description": " The Image content type can be used to upload an image in various formats (JPG, GIF, PNG, SVG). The uploaded image should always have a high resolution so that it can be used flexibly, for example as a banner image. Plone automatically delivers the images in the best scaling, so there is no need to scale images down manually.", + "image_field": "image", + "size": "s", + "styles": { + "size:noprefix": "small" + }, + "title": "Image", + "url": "../../resolveuid/970ec24c76784c66a06d8c8d8b6522b2" + }, + "8f1ad076-32b9-432b-9308-8b0972a8f57e": { + "@type": "image", + "align": "right", + "credit": {}, + "description": " The Image content type can be used to upload an image in various formats (JPG, GIF, PNG, SVG). The uploaded image should always have a high resolution so that it can be used flexibly, for example as a banner image. Plone automatically delivers the images in the best scaling, so there is no need to scale images down manually.", + "image_field": "image", + "size": "s", + "styles": { + "size:noprefix": "small" + }, + "title": "Image", + "url": "../../resolveuid/970ec24c76784c66a06d8c8d8b6522b2" + }, + "b4536f61-92a1-4b65-aa40-c142d799f0ba": { + "@type": "slate", + "plaintext": "Text Heading H3", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Text Heading H3" + } + ], + "type": "h2" + } + ] + }, + "c0b3b08e-c350-43e6-84e9-787903d91f8c": { + "@type": "image", + "align": "left", + "credit": {}, + "description": " The Image content type can be used to upload an image in various formats (JPG, GIF, PNG, SVG). The uploaded image should always have a high resolution so that it can be used flexibly, for example as a banner image. Plone automatically delivers the images in the best scaling, so there is no need to scale images down manually.", + "image_field": "image", + "size": "m", + "styles": { + "size:noprefix": "medium" + }, + "title": "Image", + "url": "../../resolveuid/970ec24c76784c66a06d8c8d8b6522b2" + }, + "c3344b1c-89b9-4119-993e-58ef6bece880": { + "@type": "slate", + "plaintext": "Text Heading H3", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Text Heading H3" + } + ], + "type": "h2" + } + ] + }, + "c3d2c41a-8e53-45a4-b212-cb54dad6045d": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore blandit praesent luptatum zzril qui Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore blandit praesent luptatum zzril qui Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi." + } + ], + "type": "p" + } + ] + }, + "d754b95e-7fa8-4cbd-9997-f2bb6cde26df": { + "@type": "image", + "align": "left", + "credit": {}, + "description": " The Image content type can be used to upload an image in various formats (JPG, GIF, PNG, SVG). The uploaded image should always have a high resolution so that it can be used flexibly, for example as a banner image. Plone automatically delivers the images in the best scaling, so there is no need to scale images down manually.", + "image_field": "image", + "size": "l", + "title": "Image", + "url": "../../resolveuid/970ec24c76784c66a06d8c8d8b6522b2" + }, + "d77557e0-793a-408f-9940-a0ad80d3be8f": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore blandit praesent luptatum zzril qui Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore blandit praesent luptatum zzril qui Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi." + } + ], + "type": "p" + } + ] + }, + "da31d046-9d5f-48db-9368-c5a943c35aa1": { + "@type": "slate", + "plaintext": "Text Heading H3", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Text Heading H3" + } + ], + "type": "h2" + } + ] + }, + "ee0d02f1-ff2c-4dee-a79f-a1ed105cc84c": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi." + } + ], + "type": "p" + } + ] + } + }, + "blocks_layout": { + "items": [ + "6e94c839-855c-43ff-92fa-a2f9dfac2bc9", + "1da28f76-9d9c-4a98-af0b-2e8c7abc1c35", + "ee0d02f1-ff2c-4dee-a79f-a1ed105cc84c", + "d754b95e-7fa8-4cbd-9997-f2bb6cde26df", + "b4536f61-92a1-4b65-aa40-c142d799f0ba", + "725bfc52-49f6-4e70-8d11-48c537cfb5ff", + "773db1b3-7504-40e2-bf09-ce96e31249b2", + "c0b3b08e-c350-43e6-84e9-787903d91f8c", + "1eb2924b-8de0-4152-8ae0-50eb27c3fad8", + "c3d2c41a-8e53-45a4-b212-cb54dad6045d", + "1060e842-2b14-43dc-9e43-c25022029a94", + "da31d046-9d5f-48db-9368-c5a943c35aa1", + "1becedb6-65f6-4bee-9b36-5c38deaa4141", + "11af3b59-7720-4875-b0b9-90be5807d476", + "89d2ea6e-b8fb-4d13-a251-37cc3bbb5961", + "05ee41f0-e8b8-4181-a773-366ca209dbc8", + "d77557e0-793a-408f-9940-a0ad80d3be8f", + "8f1ad076-32b9-432b-9308-8b0972a8f57e", + "c3344b1c-89b9-4119-993e-58ef6bece880", + "76ab99ce-789c-41b2-9df8-4322c8c8c1ad" + ] + }, + "title": "Accordion with image" + }, + "d80e4d6f-b708-4f45-8c3a-fc8f8ccc07c0": { + "@type": "accordionPanel", + "blocks": { + "f56375fe-70a1-4ac1-a94c-adc9998db548": { + "@type": "slateTable", + "styles": { + "backgroundColor": "transparent" + }, + "table": { + "basic": false, + "celled": true, + "compact": false, + "fixed": true, + "hideHeaders": false, + "inverted": false, + "rows": [ + { + "cells": [ + { + "key": "f446n", + "type": "header", + "value": [ + { + "children": [ + { + "text": "Title Tablehead " + } + ], + "type": "p" + } + ] + }, + { + "key": "26qcg", + "type": "header", + "value": [ + { + "children": [ + { + "text": "Title Tablehead " + } + ], + "type": "p" + } + ] + }, + { + "key": "dhv72", + "type": "header", + "value": [ + { + "children": [ + { + "text": "Title Tablehead " + } + ], + "type": "p" + } + ] + } + ], + "key": "dda2b" + }, + { + "cells": [ + { + "key": "52vlv", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": " " + } + ], + "type": "p" + } + ] + }, + { + "key": "5ko7h", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": " " + } + ], + "type": "p" + } + ] + }, + { + "key": "878jv", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": " " + } + ], + "type": "p" + } + ] + } + ], + "key": "3ihrs" + }, + { + "cells": [ + { + "key": "754if", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": " " + } + ], + "type": "p" + } + ] + }, + { + "key": "1bjdt", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": " " + } + ], + "type": "p" + } + ] + }, + { + "key": "32g6k", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": " " + } + ], + "type": "p" + } + ] + } + ], + "key": "au6so" + }, + { + "cells": [ + { + "key": "5fhem", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": " " + } + ], + "type": "p" + } + ] + }, + { + "key": "e78dh", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": " " + } + ], + "type": "p" + } + ] + }, + { + "key": "feacr", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Heading H3" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Heading H2" + } + ], + "type": "h3" + }, + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "italic" + } + ], + "type": "em" + }, + { + "text": " or a " + }, + { + "children": [ + { + "text": "Link" + } + ], + "data": { + "url": "../../resolveuid/1367ce64d3d440b7975652f6f36be9be" + }, + "type": "link" + }, + { + "text": " " + } + ], + "type": "p" + } + ] + } + ], + "key": "fqhgk" + } + ], + "striped": true + } + } + }, + "blocks_layout": { + "items": [ + "f56375fe-70a1-4ac1-a94c-adc9998db548" + ] + }, + "title": "Accordion with table" + } + }, + "blocks_layout": { + "items": [ + "39f75787-bd7a-42dc-ab40-a6c9dfd2a8f1", + "d2168440-888d-4081-8409-b59392abc189", + "b58c92b4-6604-4408-9039-a147965fa4bd", + "262a2478-3a63-445a-aab7-edf55cceebcf", + "d80e4d6f-b708-4f45-8c3a-fc8f8ccc07c0" + ] + } + }, + "filtering": false, + "non_exclusive": false, + "right_arrows": true, + "styles": { + "backgroundColor": "grey" + } + }, + "fec13476-1231-42fc-84d5-b110e8e3c6e7": { + "@type": "title" + } + }, + "blocks_layout": { + "items": [ + "fec13476-1231-42fc-84d5-b110e8e3c6e7", + "41a82a93-c00c-4a40-bac8-53a3e3420c8e", + "8f68209e-220e-4230-9d42-8b0602573bd9" + ] + }, + "contributors": [], + "created": "2023-07-27T19:48:00+00:00", + "creators": [ + "admin" + ], + "description": "The accordion contains other blocks in an accordion behavior layout.", + "effective": "2023-09-22T16:09:00", + "exclude_from_nav": false, + "expires": null, + "id": "block-accordion", + "is_folderish": true, + "language": "en", + "layout": "document_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2024-03-08T14:43:21+00:00", + "parent": { + "@id": "/block", + "@type": "Document", + "UID": "425695d2b7cb47e69374d6f211f17e38", + "description": "", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Blocks", + "type_title": "Page" + }, + "preview_caption": null, + "preview_image": null, + "review_state": "published", + "rights": "", + "subjects": [], + "title": "Accordion", + "type_title": "Page", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2023-07-27T19:48:01+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2023-09-22T14:09:24+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/30.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/30.json new file mode 100644 index 0000000..8677ea9 --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/30.json @@ -0,0 +1,61 @@ +{ + "@id": "/content-types/external-link", + "@type": "Link", + "UID": "362783c333434d2f89a00bd48ea37e34", + "allow_discussion": false, + "changeNote": "", + "contributors": [], + "created": "2024-03-07T16:06:57+00:00", + "creators": [ + "admin" + ], + "description": "", + "effective": "2024-03-07T17:09:00", + "exclude_from_nav": false, + "expires": null, + "id": "external-link", + "is_folderish": false, + "language": "en", + "layout": "link_redirect_view", + "lock": {}, + "modified": "2024-03-08T15:08:21+00:00", + "parent": { + "@id": "/content-types", + "@type": "Document", + "UID": "e8178744e30a418b9a5768997bb29a19", + "description": "This section has a sample of content types available in this site.", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Content Types", + "type_title": "Page" + }, + "remoteUrl": "https://plone.org", + "review_state": "published", + "rights": "", + "subjects": [], + "title": "External Link", + "type_title": "Link", + "version": "current", + "versioning_enabled": true, + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2024-03-07T16:06:57+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2024-03-07T16:09:12+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/31.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/31.json new file mode 100644 index 0000000..15ea269 --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/31.json @@ -0,0 +1,59 @@ +{ + "@id": "/content-types/image", + "@type": "Image", + "UID": "970ec24c76784c66a06d8c8d8b6522b2", + "allow_discussion": false, + "contributors": [], + "created": "2023-07-06T21:35:08+00:00", + "creators": [ + "admin" + ], + "description": "\nThe Image content type can be used to upload an image in various formats (JPG, GIF, PNG, SVG). The uploaded image should always have a high resolution so that it can be used flexibly, for example as a banner image. Plone automatically delivers the images in the best scaling, so there is no need to scale images down manually.", + "effective": null, + "exclude_from_nav": false, + "expires": null, + "id": "image", + "image": { + "blob_path": "blobs/970ec24c76784c66a06d8c8d8b6522b2-image/black-starry-night.jpg", + "content-type": "image/jpeg", + "filename": "black-starry-night.jpg", + "height": 1708, + "size": 693013, + "width": 2400 + }, + "is_folderish": false, + "language": "en", + "layout": "image_view", + "lock": {}, + "modified": "2024-03-08T14:26:45+00:00", + "parent": { + "@id": "/content-types", + "@type": "Document", + "UID": "e8178744e30a418b9a5768997bb29a19", + "description": "This section has a sample of content types available in this site.", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Content Types", + "type_title": "Page" + }, + "review_state": null, + "rights": "Credits: ipsum dolor sit amet.", + "subjects": [], + "title": "Image", + "type_title": "Image", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2023-07-06T21:35:08+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/32.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/32.json new file mode 100644 index 0000000..25e232f --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/32.json @@ -0,0 +1,59 @@ +{ + "@id": "/content-types/image-light", + "@type": "Image", + "UID": "eec82559bf3242a6be4d43bc2096f399", + "allow_discussion": false, + "contributors": [], + "created": "2023-07-06T21:35:08+00:00", + "creators": [ + "admin" + ], + "description": "\nThe Image content type can be used to upload an image in various formats (JPG, GIF, PNG, SVG). The uploaded image should always have a high resolution so that it can be used flexibly, for example as a banner image. Plone automatically delivers the images in the best scaling, so there is no need to scale images down manually.", + "effective": null, + "exclude_from_nav": false, + "expires": null, + "id": "image-light", + "image": { + "blob_path": "blobs/eec82559bf3242a6be4d43bc2096f399-image/image-light.jpg", + "content-type": "image/jpeg", + "filename": "image-light.jpg", + "height": 633, + "size": 475285, + "width": 1126 + }, + "is_folderish": false, + "language": "en", + "layout": "image_view", + "lock": {}, + "modified": "2024-03-08T14:26:45+00:00", + "parent": { + "@id": "/content-types", + "@type": "Document", + "UID": "e8178744e30a418b9a5768997bb29a19", + "description": "This section has a sample of content types available in this site.", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Content Types", + "type_title": "Page" + }, + "review_state": null, + "rights": "", + "subjects": [], + "title": "Image - Light", + "type_title": "Image", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2023-07-06T21:35:08+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/33.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/33.json new file mode 100644 index 0000000..db7b33c --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/33.json @@ -0,0 +1,61 @@ +{ + "@id": "/content-types/internal-link", + "@type": "Link", + "UID": "195d96ca9952493cbffa69cda040b8b3", + "allow_discussion": false, + "changeNote": "", + "contributors": [], + "created": "2023-07-06T21:35:19+00:00", + "creators": [ + "admin" + ], + "description": "The Link content type can be used to display links on the page. Users are automatically redirected to the external site when they click on the link.", + "effective": "2023-07-06T18:35:00", + "exclude_from_nav": false, + "expires": null, + "id": "internal-link", + "is_folderish": false, + "language": "en", + "layout": "link_redirect_view", + "lock": {}, + "modified": "2023-09-22T14:27:30+00:00", + "parent": { + "@id": "/content-types", + "@type": "Document", + "UID": "e8178744e30a418b9a5768997bb29a19", + "description": "This section has a sample of content types available in this site.", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Content Types", + "type_title": "Page" + }, + "remoteUrl": "http://localhost:8080/Plone/example", + "review_state": "published", + "rights": "", + "subjects": [], + "title": "Link (Internal)", + "type_title": "Link", + "version": "current", + "versioning_enabled": true, + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2023-07-06T21:35:19+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2023-07-06T21:35:19+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/34.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/34.json new file mode 100644 index 0000000..b9627ce --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/34.json @@ -0,0 +1,61 @@ +{ + "@id": "/content-types/link", + "@type": "Link", + "UID": "51aa57a0fb694d528ee5a76af0107131", + "allow_discussion": false, + "changeNote": "", + "contributors": [], + "created": "2023-07-06T21:35:19+00:00", + "creators": [ + "admin" + ], + "description": "The Link content type can be used to display links on the page. Users are automatically redirected to the external site when they click on the link.", + "effective": "2023-07-06T18:35:00", + "exclude_from_nav": false, + "expires": null, + "id": "link", + "is_folderish": false, + "language": "en", + "layout": "link_redirect_view", + "lock": {}, + "modified": "2023-09-22T14:27:41+00:00", + "parent": { + "@id": "/content-types", + "@type": "Document", + "UID": "e8178744e30a418b9a5768997bb29a19", + "description": "This section has a sample of content types available in this site.", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Content Types", + "type_title": "Page" + }, + "remoteUrl": "https://www.google.com", + "review_state": "published", + "rights": "", + "subjects": [], + "title": "Link", + "type_title": "Link", + "version": "current", + "versioning_enabled": true, + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2023-07-06T21:35:19+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2023-07-06T21:35:19+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/35.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/35.json new file mode 100644 index 0000000..1a11710 --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/35.json @@ -0,0 +1,766 @@ +{ + "@id": "/content-types/news-item", + "@type": "News Item", + "UID": "8cc3e9af77c0452aa2278b0bfdcf9c85", + "allow_discussion": false, + "blocks": { + "07f0bb3b-a762-4f41-9f02-052921e9fd28": { + "@type": "slate", + "plaintext": "Headline H3", + "value": [ + { + "children": [ + { + "text": "Headline H3 " + } + ], + "type": "h3" + } + ] + }, + "09891614-7ed6-444c-9925-8589801ca8ea": { + "@type": "slate", + "plaintext": "Headline H3", + "value": [ + { + "children": [ + { + "text": "Headline H3 " + } + ], + "type": "h3" + } + ] + }, + "0fc24145-c346-4031-adc5-7ad06bd0656a": { + "@type": "separator", + "styles": { + "align": "left" + } + }, + "1225bf63-e058-44b2-8834-5cdc29ecbcbd": { + "@type": "image", + "align": "left", + "credit": {}, + "description": "Der Inhaltstyp Bild kann verwendet werden um ein Bild in verschiedenen Formate (JPG, GIF, PNG, SVG) hochzuladen. Das hochgeladene Bild sollte dabei immer eine hohe Aufl\u00f6sung haben, damit es flexibel, z.B. auch als Banner-Bild eingesetzt werden kann. Plone liefert die Bilder automatisch in der besten Skalierung aus, so dass es nicht n\u00f6tig ist Bilder manuell herunter zu skalieren.", + "image_field": "image", + "size": "l", + "title": "Image - Light", + "url": "/content-types/image-light" + }, + "2220580b-204f-4e6d-822d-7e28f37512a9": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum", + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum " + } + ], + "type": "p" + } + ] + }, + "23e7d05e-f9c4-4278-83bb-d691d1dd3606": { + "@type": "slate", + "plaintext": "Ordered List Bullett Point One Ordered List Bullett Point Two Ordered List Bullett Point Three Ordered List Bullett Point Four", + "value": [ + { + "children": [ + { + "children": [ + { + "text": "Ordered List Bullett Point One" + } + ], + "type": "li" + }, + { + "children": [ + { + "text": "Ordered List Bullett Point Two" + } + ], + "type": "li" + }, + { + "children": [ + { + "text": "Ordered List Bullett Point Three" + } + ], + "type": "li" + }, + { + "children": [ + { + "text": "Ordered List Bullett Point Four" + } + ], + "type": "li" + } + ], + "type": "ol" + } + ] + }, + "2a61f06a-9960-4c9c-85eb-bac7a3853fdc": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi." + } + ], + "type": "p" + } + ] + }, + "3642f388-4b3c-4019-ae58-0c56b3487aef": { + "@type": "image", + "align": "right", + "credit": {}, + "description": "Der Inhaltstyp Bild kann verwendet werden um ein Bild in verschiedenen Formate (JPG, GIF, PNG, SVG) hochzuladen. Das hochgeladene Bild sollte dabei immer eine hohe Aufl\u00f6sung haben, damit es flexibel, z.B. auch als Banner-Bild eingesetzt werden kann. Plone liefert die Bilder automatisch in der besten Skalierung aus, so dass es nicht n\u00f6tig ist Bilder manuell herunter zu skalieren.", + "image_field": "image", + "size": "l", + "title": "Image - Light", + "url": "/content-types/image-light" + }, + "38243fe2-81f9-4afe-8abf-e90d38f92cdf": { + "@type": "slate", + "plaintext": "Text can be bold or Italic .", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "Italic" + } + ], + "type": "em" + }, + { + "text": "." + } + ], + "type": "p" + } + ] + }, + "3961e879-3e3a-4ab2-9b0c-0f4c7786679c": { + "@type": "slate", + "plaintext": " Link external ", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "" + }, + { + "children": [ + { + "text": "Link external" + } + ], + "data": { + "url": "https://www.google.com" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + "3d76738a-e02c-4f98-84a3-9b0adc1caf69": { + "@type": "image", + "align": "center", + "credit": {}, + "description": "Der Inhaltstyp Bild kann verwendet werden um ein Bild in verschiedenen Formate (JPG, GIF, PNG, SVG) hochzuladen. Das hochgeladene Bild sollte dabei immer eine hohe Aufl\u00f6sung haben, damit es flexibel, z.B. auch als Banner-Bild eingesetzt werden kann. Plone liefert die Bilder automatisch in der besten Skalierung aus, so dass es nicht n\u00f6tig ist Bilder manuell herunter zu skalieren.", + "image_field": "image", + "size": "l", + "title": "Image - Light", + "url": "/content-types/image-light" + }, + "4ad62079-8826-4677-9a53-4bce2ebb0caf": { + "@type": "introduction", + "plaintext": "Highlight Title H2\nLorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.", + "value": [ + { + "children": [ + { + "text": "Highlight Title H2 " + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. " + } + ], + "type": "p" + } + ] + }, + "4e771550-447e-4112-b998-81d00adb2797": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi." + } + ], + "type": "p" + } + ] + }, + "57903d6a-6ed1-4e65-acef-22ccf51c5530": { + "@type": "slate", + "plaintext": "Headline H3", + "value": [ + { + "children": [ + { + "text": "Headline H3 " + } + ], + "type": "h3" + } + ] + }, + "6a19b315-8b57-4c4d-8b2c-486fc7df34b8": { + "@type": "slate", + "plaintext": "Headline H3", + "value": [ + { + "children": [ + { + "text": "Headline H3 " + } + ], + "type": "h3" + } + ] + }, + "6a9f0ce0-6918-439e-9abf-aeba220d9a61": { + "@type": "slate", + "plaintext": "Headline H3", + "value": [ + { + "children": [ + { + "text": "Headline H3 " + } + ], + "type": "h3" + } + ] + }, + "6f2d9fbe-05b4-46db-a6f7-22e57e08eddf": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi." + } + ], + "type": "p" + } + ] + }, + "71c6a6c6-6f0b-4cf5-be93-23ad2af9b2c9": { + "@type": "image", + "align": "right", + "credit": {}, + "description": "Der Inhaltstyp Bild kann verwendet werden um ein Bild in verschiedenen Formate (JPG, GIF, PNG, SVG) hochzuladen. Das hochgeladene Bild sollte dabei immer eine hohe Aufl\u00f6sung haben, damit es flexibel, z.B. auch als Banner-Bild eingesetzt werden kann. Plone liefert die Bilder automatisch in der besten Skalierung aus, so dass es nicht n\u00f6tig ist Bilder manuell herunter zu skalieren.", + "image_field": "image", + "size": "s", + "styles": { + "size:noprefix": "small" + }, + "title": "Image - Light", + "url": "/content-types/image-light" + }, + "7a4c45bc-f969-4d18-8556-bd2cb955fea8": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit " + } + ], + "type": "p" + } + ] + }, + "7d8dcf49-e41f-4253-b217-a0df26511977": { + "@type": "separator", + "styles": { + "align": "full" + } + }, + "7f1c54fe-5061-471d-970d-5d4dca0854fc": { + "@type": "slate", + "plaintext": "Unordered List Bullett Point One Unordered List Bullett Point Two Unordered List Bullett Point Three Unordered List Bullett Point Four", + "value": [ + { + "children": [ + { + "children": [ + { + "text": "Unordered List Bullett Point One" + } + ], + "type": "li" + }, + { + "children": [ + { + "text": "Unordered List Bullett Point Two" + } + ], + "type": "li" + }, + { + "children": [ + { + "text": "Unordered List Bullett Point Three" + } + ], + "type": "li" + }, + { + "children": [ + { + "text": "Unordered List Bullett Point Four" + } + ], + "type": "li" + } + ], + "type": "ul" + } + ] + }, + "80177065-93a8-41b9-b45e-e71154294a82": { + "@type": "image", + "align": "right", + "credit": {}, + "description": "Der Inhaltstyp Bild kann verwendet werden um ein Bild in verschiedenen Formate (JPG, GIF, PNG, SVG) hochzuladen. Das hochgeladene Bild sollte dabei immer eine hohe Aufl\u00f6sung haben, damit es flexibel, z.B. auch als Banner-Bild eingesetzt werden kann. Plone liefert die Bilder automatisch in der besten Skalierung aus, so dass es nicht n\u00f6tig ist Bilder manuell herunter zu skalieren.", + "image_field": "image", + "size": "m", + "styles": { + "size:noprefix": "medium" + }, + "title": "Image - Light", + "url": "/content-types/image-light" + }, + "83af2a96-6f44-4c03-9178-bd6b3678d524": { + "@type": "slate", + "plaintext": "Headline H2", + "value": [ + { + "children": [ + { + "text": "Headline H2 " + } + ], + "type": "h2" + } + ] + }, + "83b29f62-44cb-4122-baac-cf5c86402757": { + "@type": "slate", + "plaintext": "Inline Styles", + "value": [ + { + "children": [ + { + "text": "Inline Styles" + } + ], + "type": "h3" + } + ] + }, + "8fe9052b-d9a4-48dd-ae47-80b256826aca": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu luptatum zzril delenit auguevel eum iriure dolor in hendrerit in. Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu luptatum zzril delenit auguevel eum iriure dolor in hendrerit in.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu luptatum zzril delenit auguevel eum iriure dolor in hendrerit in. Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu luptatum zzril delenit auguevel eum iriure dolor in hendrerit in." + } + ], + "type": "p" + } + ] + }, + "95a19acf-2d32-4b99-bf3e-d90d3470735c": { + "@type": "image", + "align": "left", + "credit": {}, + "description": "Der Inhaltstyp Bild kann verwendet werden um ein Bild in verschiedenen Formate (JPG, GIF, PNG, SVG) hochzuladen. Das hochgeladene Bild sollte dabei immer eine hohe Aufl\u00f6sung haben, damit es flexibel, z.B. auch als Banner-Bild eingesetzt werden kann. Plone liefert die Bilder automatisch in der besten Skalierung aus, so dass es nicht n\u00f6tig ist Bilder manuell herunter zu skalieren.", + "image_field": "image", + "size": "m", + "styles": { + "size:noprefix": "medium" + }, + "title": "Image - Light", + "url": "/content-types/image-light" + }, + "97070cac-5043-4d42-a782-3fb51f1c4bae": { + "@type": "slate", + "plaintext": "Lists", + "value": [ + { + "children": [ + { + "text": "Lists" + } + ], + "type": "h3" + } + ] + }, + "9c1f17e7-4c01-4f6f-8241-7ee47b7f1ce9": { + "@type": "separator", + "styles": { + "align": "full" + } + }, + "a1bf6371-37e8-4054-924d-36c99a5f0f78": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue", + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue " + } + ], + "type": "p" + } + ] + }, + "a91ef2a4-336d-4d4f-90e5-d1d31befcaa8": { + "@type": "separator", + "styles": { + "align": "left" + } + }, + "a9807954-cb10-4170-8ebd-e3ba1baa3fde": { + "@type": "image", + "align": "left", + "credit": {}, + "description": "Der Inhaltstyp Bild kann verwendet werden um ein Bild in verschiedenen Formate (JPG, GIF, PNG, SVG) hochzuladen. Das hochgeladene Bild sollte dabei immer eine hohe Aufl\u00f6sung haben, damit es flexibel, z.B. auch als Banner-Bild eingesetzt werden kann. Plone liefert die Bilder automatisch in der besten Skalierung aus, so dass es nicht n\u00f6tig ist Bilder manuell herunter zu skalieren.", + "image_field": "image", + "size": "s", + "styles": { + "size:noprefix": "small" + }, + "title": "Image - Light", + "url": "/content-types/image-light" + }, + "b5b151a1-fb13-458a-8232-4a87bb8c2904": { + "@type": "separator", + "styles": { + "align": "full" + } + }, + "bfab529b-06c6-4931-b907-aa0538bb68ae": { + "@type": "introduction", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.", + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. " + } + ], + "type": "p" + } + ] + }, + "c31e4ec0-788b-4988-b193-5ae9ca30c253": { + "@type": "slate", + "plaintext": "Headline H3", + "value": [ + { + "children": [ + { + "text": "Headline H3 " + } + ], + "type": "h3" + } + ] + }, + "c5ac2a89-5637-42cb-ac29-4448ca0a54b0": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse", + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse " + } + ], + "type": "p" + } + ] + }, + "c9d141e5-c8d2-4255-b288-ce305a51d40e": { + "@type": "slate", + "plaintext": " Link internal ", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "" + }, + { + "children": [ + { + "text": "Link internal " + } + ], + "data": { + "url": "/block/button-block" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + "ca682edf-ea8f-49fc-92ce-c9a2a782a42e": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu luptatum zzril delenit auguevel eum iriure", + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu luptatum zzril delenit auguevel eum iriure " + } + ], + "type": "p" + } + ] + }, + "d3f1c443-583f-4e8e-a682-3bf25752a300": { + "@type": "title" + }, + "dd0ab22f-fe24-45e6-8e0b-ab0573519657": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu luptatum zzril delenit auguevel eum iriure dolor in hendrerit in", + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu luptatum zzril delenit auguevel eum iriure dolor in hendrerit in " + } + ], + "type": "p" + } + ] + }, + "ddd8af02-b007-40d2-aec2-4a7f6651f3a7": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi." + } + ], + "type": "p" + } + ] + }, + "e0950549-5612-483d-a16c-a6481b1f4f83": { + "@type": "separator", + "styles": { + "align": "full" + } + }, + "e38d6b59-9c34-44a7-a694-36ad6367b617": { + "@type": "separator", + "styles": { + "align": "left" + } + }, + "f16a700c-3b02-47aa-9d08-ade7dea4f683": { + "@type": "image", + "align": "wide", + "credit": {}, + "description": "Der Inhaltstyp Bild kann verwendet werden um ein Bild in verschiedenen Formate (JPG, GIF, PNG, SVG) hochzuladen. Das hochgeladene Bild sollte dabei immer eine hohe Aufl\u00f6sung haben, damit es flexibel, z.B. auch als Banner-Bild eingesetzt werden kann. Plone liefert die Bilder automatisch in der besten Skalierung aus, so dass es nicht n\u00f6tig ist Bilder manuell herunter zu skalieren.", + "image_field": "image", + "size": "l", + "title": "Inhaltstyp: Image-1", + "url": "/content-types/image" + }, + "fa56fc9a-574e-4a7f-b6ef-703bccc54667": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi." + } + ], + "type": "p" + } + ] + } + }, + "blocks_layout": { + "items": [ + "d3f1c443-583f-4e8e-a682-3bf25752a300", + "f16a700c-3b02-47aa-9d08-ade7dea4f683", + "b5b151a1-fb13-458a-8232-4a87bb8c2904", + "4ad62079-8826-4677-9a53-4bce2ebb0caf", + "9c1f17e7-4c01-4f6f-8241-7ee47b7f1ce9", + "83af2a96-6f44-4c03-9178-bd6b3678d524", + "fa56fc9a-574e-4a7f-b6ef-703bccc54667", + "6a9f0ce0-6918-439e-9abf-aeba220d9a61", + "ddd8af02-b007-40d2-aec2-4a7f6651f3a7", + "97070cac-5043-4d42-a782-3fb51f1c4bae", + "23e7d05e-f9c4-4278-83bb-d691d1dd3606", + "7f1c54fe-5061-471d-970d-5d4dca0854fc", + "83b29f62-44cb-4122-baac-cf5c86402757", + "38243fe2-81f9-4afe-8abf-e90d38f92cdf", + "c9d141e5-c8d2-4255-b288-ce305a51d40e", + "3961e879-3e3a-4ab2-9b0c-0f4c7786679c", + "7d8dcf49-e41f-4253-b217-a0df26511977", + "bfab529b-06c6-4931-b907-aa0538bb68ae", + "e0950549-5612-483d-a16c-a6481b1f4f83", + "3d76738a-e02c-4f98-84a3-9b0adc1caf69", + "a91ef2a4-336d-4d4f-90e5-d1d31befcaa8", + "6a19b315-8b57-4c4d-8b2c-486fc7df34b8", + "3642f388-4b3c-4019-ae58-0c56b3487aef", + "c5ac2a89-5637-42cb-ac29-4448ca0a54b0", + "1225bf63-e058-44b2-8834-5cdc29ecbcbd", + "c31e4ec0-788b-4988-b193-5ae9ca30c253", + "7a4c45bc-f969-4d18-8556-bd2cb955fea8", + "2a61f06a-9960-4c9c-85eb-bac7a3853fdc", + "0fc24145-c346-4031-adc5-7ad06bd0656a", + "95a19acf-2d32-4b99-bf3e-d90d3470735c", + "57903d6a-6ed1-4e65-acef-22ccf51c5530", + "2220580b-204f-4e6d-822d-7e28f37512a9", + "80177065-93a8-41b9-b45e-e71154294a82", + "ca682edf-ea8f-49fc-92ce-c9a2a782a42e", + "6f2d9fbe-05b4-46db-a6f7-22e57e08eddf", + "e38d6b59-9c34-44a7-a694-36ad6367b617", + "a9807954-cb10-4170-8ebd-e3ba1baa3fde", + "07f0bb3b-a762-4f41-9f02-052921e9fd28", + "dd0ab22f-fe24-45e6-8e0b-ab0573519657", + "a1bf6371-37e8-4054-924d-36c99a5f0f78", + "4e771550-447e-4112-b998-81d00adb2797", + "71c6a6c6-6f0b-4cf5-be93-23ad2af9b2c9", + "09891614-7ed6-444c-9925-8589801ca8ea", + "8fe9052b-d9a4-48dd-ae47-80b256826aca" + ] + }, + "changeNote": "", + "contributors": [], + "created": "2023-07-06T21:35:19+00:00", + "creators": [ + "admin" + ], + "description": "The News Item content type can be used to display News content on the website.", + "effective": "2023-01-01T10:42:00", + "exclude_from_nav": false, + "expires": null, + "id": "news-item", + "image": null, + "image_caption": null, + "is_folderish": true, + "language": "en", + "layout": "newsitem_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2023-09-22T14:26:55+00:00", + "parent": { + "@id": "/content-types", + "@type": "Document", + "UID": "e8178744e30a418b9a5768997bb29a19", + "description": "This section has a sample of content types available in this site.", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Content Types", + "type_title": "Page" + }, + "review_state": "published", + "rights": "", + "subjects": [], + "title": "News Item", + "type_title": "News Item", + "version": "current", + "versioning_enabled": true, + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2023-07-06T21:35:20+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2023-07-06T21:35:20+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/36.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/36.json new file mode 100644 index 0000000..95a69e7 --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/36.json @@ -0,0 +1,738 @@ +{ + "@id": "/content-types/page", + "@type": "Document", + "UID": "7ab9c48ede33415fa2a66a99549c8f70", + "allow_discussion": false, + "blocks": { + "01604376-680c-4081-bf61-96c5f67d15eb": { + "@type": "slate", + "plaintext": "Lists", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Lists" + } + ], + "type": "h3" + } + ] + }, + "03cae937-57c6-42e8-9570-a104d11b5fcf": { + "@type": "image", + "align": "right", + "credit": {}, + "description": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt.", + "size": "s", + "styles": { + "size:noprefix": "small" + }, + "title": "Title Image", + "url": "/content-types/image" + }, + "05810541-401a-4a47-901c-ce8a8cef1c31": { + "@type": "introduction", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.", + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. " + } + ], + "type": "p" + } + ] + }, + "208fb81b-5ddc-433e-a0e0-2373adecdf7a": { + "@type": "image", + "align": "right", + "credit": {}, + "description": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt.", + "size": "l", + "styles": { + "size:noprefix": "large" + }, + "title": "Title Image", + "url": "/content-types/image" + }, + "28a468d0-00d4-4e0b-8724-272e2e613695": { + "@type": "slate", + "plaintext": "Text Heading H3", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Text Heading H3" + } + ], + "type": "h2" + } + ] + }, + "2c8e6998-1348-4828-98c5-a0c19eea53a5": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore blandit praesent luptatum zzril qui Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore blandit praesent luptatum zzril qui Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi." + } + ], + "type": "p" + } + ] + }, + "394c0f81-fc48-4ff5-9d11-8caf8decf283": { + "@type": "slate", + "plaintext": "Text Heading H3", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Text Heading H3" + } + ], + "type": "h2" + } + ] + }, + "3f0e80ae-a76c-446f-a5da-0ac61164b723": { + "@type": "slate", + "plaintext": "Unordered List Bullett Point One Unordered List Bullett Point Two Unordered List Bullett Point Three Unordered List Bullett Point Four", + "value": [ + { + "children": [ + { + "children": [ + { + "text": "Unordered List Bullett Point One" + } + ], + "type": "li" + }, + { + "children": [ + { + "text": "Unordered List Bullett Point Two" + } + ], + "type": "li" + }, + { + "children": [ + { + "text": "Unordered List Bullett Point Three" + } + ], + "type": "li" + }, + { + "children": [ + { + "text": "Unordered List Bullett Point Four" + } + ], + "type": "li" + } + ], + "type": "ul" + } + ] + }, + "41c047eb-1206-4a60-99a8-34cac54db6a4": { + "@type": "slate", + "plaintext": "Ordered List Bullett Point One Ordered List Bullett Point Two Ordered List Bullett Point Three Ordered List Bullett Point Four", + "value": [ + { + "children": [ + { + "children": [ + { + "text": "Ordered List Bullett Point One" + } + ], + "type": "li" + }, + { + "children": [ + { + "text": "Ordered List Bullett Point Two" + } + ], + "type": "li" + }, + { + "children": [ + { + "text": "Ordered List Bullett Point Three" + } + ], + "type": "li" + }, + { + "children": [ + { + "text": "Ordered List Bullett Point Four" + } + ], + "type": "li" + } + ], + "type": "ol" + } + ] + }, + "441b2392-e6e4-4ef6-b8c5-f20f2ad236c6": { + "@type": "introduction", + "plaintext": "Highlight Title H2\nLorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.", + "value": [ + { + "children": [ + { + "text": "Highlight Title H2 " + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. " + } + ], + "type": "p" + } + ] + }, + "44c63e98-281f-4f5b-bfac-ea3b39ce4272": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi." + } + ], + "type": "p" + } + ] + }, + "4ee2efb5-8180-41ec-90df-d8b9462bdd2a": { + "@type": "separator", + "styles": { + "align": "full" + } + }, + "4fcb1054-e16a-4ca6-9bbf-aee8ad63061d": { + "@type": "image", + "align": "left", + "credit": {}, + "description": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt.", + "size": "m", + "styles": { + "size:noprefix": "medium" + }, + "title": "Title Image", + "url": "/content-types/image" + }, + "5ca3eebb-e24c-4444-81f9-b5850c57e618": { + "@type": "separator", + "styles": { + "align": "left" + } + }, + "5e23d159-75ec-4580-a6f1-f10c54877763": { + "@type": "separator", + "styles": { + "align": "full" + } + }, + "5fa67d96-bbf6-4a27-a541-f271ea975bbe": { + "@type": "slate", + "plaintext": " Link internal ", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "" + }, + { + "children": [ + { + "text": "Link internal " + } + ], + "data": { + "url": "/block/button-block" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + "69410f81-dbec-4cb6-b479-e5adc83eb350": { + "@type": "slate", + "plaintext": "Text Heading H3", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Text Heading H3" + } + ], + "type": "h2" + } + ] + }, + "6d2806bb-1a36-48e9-aebf-c3435d2f66f5": { + "@type": "separator", + "styles": { + "align": "full" + } + }, + "7092c5f4-5629-4561-b42f-29e77a5bf8e7": { + "@type": "slate", + "plaintext": "Text Heading H3", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Text Heading H3" + } + ], + "type": "h3" + } + ] + }, + "73080708-5b49-499f-8aec-56f5f27c9635": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore blandit praesent luptatum zzril qui Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore blandit praesent luptatum zzril qui Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi." + } + ], + "type": "p" + } + ] + }, + "7624cf59-05d0-4055-8f55-5fd6597d84b0": { + "@type": "slate", + "plaintext": "Text Heading H2", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Text Heading H2" + } + ], + "type": "h2" + } + ] + }, + "788efa48-5be6-459b-b3c5-37e5071351c1": { + "@type": "slate", + "plaintext": "Text Heading H3", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Text Heading H3" + } + ], + "type": "h2" + } + ] + }, + "7c36a063-bd02-487b-b49a-fcbf1b00fbda": { + "@type": "image", + "align": "wide", + "credit": {}, + "description": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt.", + "size": "l", + "title": "Title Image", + "url": "/content-types/image" + }, + "84de0f6c-9e7b-4f60-b2cd-44aa2e80cf4c": { + "@type": "slate", + "plaintext": "Text Heading H3", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Text Heading H3" + } + ], + "type": "h2" + } + ] + }, + "8cc0aca3-82a0-4ba2-b50e-577779cb44a7": { + "@type": "image", + "align": "center", + "credit": {}, + "description": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt.", + "size": "l", + "title": "Title Image", + "url": "/content-types/image" + }, + "8ebd405e-90c4-40ff-81b7-052dd5292098": { + "@type": "slate", + "plaintext": "Inline Styles", + "value": [ + { + "children": [ + { + "text": "Inline Styles" + } + ], + "type": "h3" + } + ] + }, + "994a57ba-9225-40bb-bf55-288954f979b0": { + "@type": "image", + "align": "left", + "credit": {}, + "description": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt.", + "size": "s", + "styles": { + "size:noprefix": "small" + }, + "title": "Title Image", + "url": "/content-types/image" + }, + "9a3d1a33-d559-45af-846b-8a2a37a51e0d": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore blandit praesent luptatum zzril qui Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore blandit praesent luptatum zzril qui Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi." + } + ], + "type": "p" + } + ] + }, + "abeb0a39-0ca7-43cc-8dc4-326b3514f103": { + "@type": "image", + "align": "left", + "credit": {}, + "description": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt.", + "size": "l", + "styles": { + "size:noprefix": "large" + }, + "title": "Title Image", + "url": "/content-types/image" + }, + "b1ffd738-793d-4c3f-9349-d2880c2fad80": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore blandit praesent luptatum zzril qui Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore blandit praesent luptatum zzril qui Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi." + } + ], + "type": "p" + } + ] + }, + "bcfce434-1072-4162-aa44-269f1ef07936": { + "@type": "separator", + "styles": { + "align": "full" + } + }, + "bd8d53f7-cb1d-40fa-b1a4-1aeb7b15b37f": { + "@type": "separator", + "styles": { + "align": "left" + } + }, + "c053b9ef-3446-4b6c-8de5-05b25b89d658": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi." + } + ], + "type": "p" + } + ] + }, + "ccd431a4-0662-4a4a-8c81-06240f493040": { + "@type": "slate", + "plaintext": " Link external ", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "" + }, + { + "children": [ + { + "text": "Link external" + } + ], + "data": { + "url": "https://www.google.com" + }, + "type": "link" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + "ce4b6f34-ca2e-4d3b-a097-53628fa224e7": { + "@type": "slate", + "plaintext": "Text Heading H3", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Text Heading H3" + } + ], + "type": "h2" + } + ] + }, + "d336f37b-5906-4012-a2b2-2513f64ccd6b": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore blandit praesent luptatum zzril qui Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore blandit praesent luptatum zzril qui Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi." + } + ], + "type": "p" + } + ] + }, + "d3f1c443-583f-4e8e-a682-3bf25752a300": { + "@type": "title" + }, + "e209ee66-26f0-43bd-a50d-670fe091f769": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore blandit praesent luptatum zzril qui Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem iusto odio dignissim qui blandit praesent luptatum zzril delenit auguevel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore blandit praesent luptatum zzril qui Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi." + } + ], + "type": "p" + } + ] + }, + "e725c9f6-2a36-4f0a-a0e7-b24186fba26d": { + "@type": "separator", + "styles": { + "align": "left" + } + }, + "ec65d7c6-2e7e-4b40-adce-f37ea1245ab2": { + "@type": "image", + "align": "right", + "credit": {}, + "description": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt.", + "size": "m", + "styles": { + "size:noprefix": "medium" + }, + "title": "Title Image", + "url": "/content-types/image" + }, + "f773ee3a-ecbe-40de-a214-16dfa19bb8d6": { + "@type": "slate", + "plaintext": "Text can be bold or Italic .", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Text can be " + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " or " + }, + { + "children": [ + { + "text": "Italic" + } + ], + "type": "em" + }, + { + "text": "." + } + ], + "type": "p" + } + ] + } + }, + "blocks_layout": { + "items": [ + "d3f1c443-583f-4e8e-a682-3bf25752a300", + "7c36a063-bd02-487b-b49a-fcbf1b00fbda", + "4ee2efb5-8180-41ec-90df-d8b9462bdd2a", + "441b2392-e6e4-4ef6-b8c5-f20f2ad236c6", + "bcfce434-1072-4162-aa44-269f1ef07936", + "7624cf59-05d0-4055-8f55-5fd6597d84b0", + "c053b9ef-3446-4b6c-8de5-05b25b89d658", + "7092c5f4-5629-4561-b42f-29e77a5bf8e7", + "44c63e98-281f-4f5b-bfac-ea3b39ce4272", + "01604376-680c-4081-bf61-96c5f67d15eb", + "41c047eb-1206-4a60-99a8-34cac54db6a4", + "3f0e80ae-a76c-446f-a5da-0ac61164b723", + "8ebd405e-90c4-40ff-81b7-052dd5292098", + "f773ee3a-ecbe-40de-a214-16dfa19bb8d6", + "5fa67d96-bbf6-4a27-a541-f271ea975bbe", + "ccd431a4-0662-4a4a-8c81-06240f493040", + "5e23d159-75ec-4580-a6f1-f10c54877763", + "05810541-401a-4a47-901c-ce8a8cef1c31", + "6d2806bb-1a36-48e9-aebf-c3435d2f66f5", + "8cc0aca3-82a0-4ba2-b50e-577779cb44a7", + "bd8d53f7-cb1d-40fa-b1a4-1aeb7b15b37f", + "208fb81b-5ddc-433e-a0e0-2373adecdf7a", + "788efa48-5be6-459b-b3c5-37e5071351c1", + "2c8e6998-1348-4828-98c5-a0c19eea53a5", + "abeb0a39-0ca7-43cc-8dc4-326b3514f103", + "69410f81-dbec-4cb6-b479-e5adc83eb350", + "d336f37b-5906-4012-a2b2-2513f64ccd6b", + "5ca3eebb-e24c-4444-81f9-b5850c57e618", + "4fcb1054-e16a-4ca6-9bbf-aee8ad63061d", + "84de0f6c-9e7b-4f60-b2cd-44aa2e80cf4c", + "e209ee66-26f0-43bd-a50d-670fe091f769", + "ec65d7c6-2e7e-4b40-adce-f37ea1245ab2", + "28a468d0-00d4-4e0b-8724-272e2e613695", + "73080708-5b49-499f-8aec-56f5f27c9635", + "e725c9f6-2a36-4f0a-a0e7-b24186fba26d", + "994a57ba-9225-40bb-bf55-288954f979b0", + "394c0f81-fc48-4ff5-9d11-8caf8decf283", + "b1ffd738-793d-4c3f-9349-d2880c2fad80", + "03cae937-57c6-42e8-9570-a104d11b5fcf", + "ce4b6f34-ca2e-4d3b-a097-53628fa224e7", + "9a3d1a33-d559-45af-846b-8a2a37a51e0d" + ] + }, + "contributors": [], + "created": "2023-07-06T21:35:20+00:00", + "creators": [ + "admin" + ], + "description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "effective": "2023-07-06T18:35:00", + "exclude_from_nav": false, + "expires": null, + "id": "page", + "is_folderish": true, + "language": "en", + "layout": "document_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2023-09-22T14:25:49+00:00", + "parent": { + "@id": "/content-types", + "@type": "Document", + "UID": "e8178744e30a418b9a5768997bb29a19", + "description": "This section has a sample of content types available in this site.", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Content Types", + "type_title": "Page" + }, + "preview_caption": null, + "preview_image": { + "blob_path": "blobs/7ab9c48ede33415fa2a66a99549c8f70-preview_image/black-starry-night.jpg", + "content-type": "image/jpeg", + "filename": "black-starry-night.jpg", + "height": 1708, + "size": 693013, + "width": 2400 + }, + "review_state": "published", + "rights": "", + "subjects": [], + "title": "Page", + "type_title": "Page", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2023-07-06T21:35:20+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2023-07-06T21:35:20+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/37.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/37.json new file mode 100644 index 0000000..b45d007 --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/37.json @@ -0,0 +1,623 @@ +{ + "@id": "/content-types/typography", + "@type": "Document", + "UID": "49d22a94521c4883a1bb448ac7863cdd", + "allow_discussion": false, + "blocks": { + "0a8e2813-414f-42f7-9aee-7ae6df4c338e": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.", + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet." + } + ], + "type": "p" + } + ] + }, + "11e4610d-dfac-493d-b9be-345949ca3276": { + "@type": "slate", + "plaintext": "Paragraph (p, 18px/24px)", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Paragraph (p, 18px/24px)" + } + ], + "type": "p" + } + ] + }, + "4092b07d-31df-4aaa-9cfd-5bbdf814bb04": { + "@type": "gridBlock", + "blocks": { + "92f80d54-c607-4360-8e2f-ca8dc6b792c5": { + "@type": "teaser", + "description": "Paragraph (p, 18px/24px). This section has a sample of content types available in this site.", + "head_title": "Teaser Headtitle (DIV, 14/18px)", + "href": [ + { + "@id": "http://host.docker.internal:8080/Plone/content-types", + "@type": "Document", + "Description": "This section has a sample of content types available in this site.", + "Title": "Content Types", + "getRemoteUrl": null, + "hasPreviewImage": null, + "head_title": null, + "image_field": "image", + "title": "Content Types" + } + ], + "styles": { + "align": "left" + }, + "title": "Teaser Title (H3, 24/30px)" + }, + "c86e09b4-faaa-4f71-ba71-c3cf69f2d260": { + "@type": "teaser", + "head_title": "Teaser Headtitle (DIV, 14/18px)", + "href": [ + { + "@id": "http://host.docker.internal:8080/Plone/content-types", + "@type": "Document", + "Description": "This section has a sample of content types available in this site.", + "Title": "Content Types", + "getRemoteUrl": null, + "hasPreviewImage": null, + "head_title": null, + "image_field": "image", + "title": "Content Types" + } + ], + "styles": { + "align": "left" + }, + "title": "Teaser Title (H3, 24/30px)" + } + }, + "blocks_layout": { + "items": [ + "c86e09b4-faaa-4f71-ba71-c3cf69f2d260", + "92f80d54-c607-4360-8e2f-ca8dc6b792c5" + ] + }, + "styles": {} + }, + "47cef702-7d66-4313-b3ec-585408735218": { + "@type": "toc", + "levels": [ + "h2", + "h3" + ], + "styles": {}, + "variation": "default" + }, + "4a035155-91fc-4371-82e8-b6d56866647f": { + "@type": "slate", + "plaintext": " bold / italic / strikethrough ", + "value": [ + { + "children": [ + { + "text": "" + }, + { + "children": [ + { + "text": "bold" + } + ], + "type": "strong" + }, + { + "text": " / italic / " + }, + { + "children": [ + { + "text": "strikethrough" + } + ], + "type": "del" + }, + { + "text": "" + } + ], + "type": "p" + } + ] + }, + "4be85eba-b165-4a87-8585-d8697616004d": { + "@type": "gridBlock", + "blocks": { + "e5a7baea-d795-4e31-9145-53accbbe7bc3": { + "@type": "teaser", + "description": "For grid blocks, the font of the headlines are variable, depending on the number of cells in the grid.", + "head_title": null, + "href": [ + { + "@id": "../../resolveuid/e8178744e30a418b9a5768997bb29a19", + "@type": "Document", + "Description": "This section has a sample of content types available in this site.", + "Title": "Content Types", + "getRemoteUrl": null, + "hasPreviewImage": null, + "head_title": null, + "image_field": "image", + "title": "Content Types" + } + ], + "styles": { + "align": "left" + }, + "title": "Teaser Title (H2, 30/36px)" + } + }, + "blocks_layout": { + "items": [ + "e5a7baea-d795-4e31-9145-53accbbe7bc3" + ] + }, + "styles": {} + }, + "55d58a5e-01a0-469e-b80b-3a5059593833": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet." + } + ], + "type": "p" + } + ] + }, + "5991123b-bf50-4684-ba6e-6a4f582d4640": { + "@type": "slate", + "plaintext": "ordered list ordered list", + "value": [ + { + "children": [ + { + "children": [ + { + "text": "ordered list" + } + ], + "type": "li" + }, + { + "children": [ + { + "text": "ordered list" + } + ], + "type": "li" + } + ], + "type": "ol" + } + ] + }, + "875e2811-edb6-4842-8cc0-246fa1be6f58": { + "@type": "listing", + "block": "875e2811-edb6-4842-8cc0-246fa1be6f58", + "headline": "Heading (H2, 33/42px)", + "headlineTag": "h2", + "query": [], + "querystring": { + "limit": "5", + "query": [ + { + "i": "portal_type", + "o": "plone.app.querystring.operation.selection.any", + "v": [ + "File", + "Document" + ] + } + ], + "sort_on": "effective", + "sort_order": "descending", + "sort_order_boolean": "descending" + }, + "styles": {}, + "variation": "default" + }, + "8fe8fc9b-221c-4c74-b66f-671d638222f3": { + "@type": "heading", + "alignment": "left", + "heading": "Heading (H2, 33/42px)", + "styles": {}, + "tag": "h2" + }, + "96e308ec-74e6-4ddd-bf31-4a9e66e0584e": { + "@type": "introduction", + "plaintext": "Text Heading H2 (H2, 36/48px)\nParagraph text (p, 24/33px) -> Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.", + "value": [ + { + "children": [ + { + "text": "Text Heading H2 (H2, 36/48px)" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Paragraph text (p, 24/33px) -> Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet." + } + ], + "type": "p" + } + ] + }, + "9f276d9d-f3c9-4529-9a69-9c93f2d6c5ea": { + "@type": "slate", + "plaintext": "Text Heading H3 (H3, 24/30px)", + "value": [ + { + "children": [ + { + "text": "Text Heading H3 (H3, 24/30px)" + } + ], + "type": "h3" + } + ] + }, + "a6cad3f3-57e8-4bb7-8ac2-b12096e974d2": { + "@type": "title" + }, + "af96daae-955d-42f8-a5e7-c7943fb2e321": { + "@type": "gridBlock", + "blocks": { + "a7ffd7f2-5dbf-4b5c-b24e-d10db0dff8df": { + "@type": "slate", + "plaintext": "Text Heading (H3, 24/30px)\nParagraph Text (p, 18/24px)", + "value": [ + { + "children": [ + { + "text": "Text Heading (H3, 24/30px)" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Paragraph Text (p, 18/24px)" + } + ], + "type": "p" + } + ] + }, + "c1163fcc-e2a4-4e81-b6ab-af537c8b4d56": { + "@type": "slate", + "plaintext": "Text Heading (H3, 24/30px)\nParagraph Text (p, 18/24px)", + "value": [ + { + "children": [ + { + "text": "Text Heading (H3, 24/30px)" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "Paragraph Text (p, 18/24px)" + } + ], + "type": "p" + } + ] + } + }, + "blocks_layout": { + "items": [ + "a7ffd7f2-5dbf-4b5c-b24e-d10db0dff8df", + "c1163fcc-e2a4-4e81-b6ab-af537c8b4d56" + ] + }, + "styles": {} + }, + "b8c4c6dc-47f1-493d-a2ba-d1ca958def4a": { + "@type": "slate", + "plaintext": "unordered list unordered list", + "value": [ + { + "children": [ + { + "children": [ + { + "text": "unordered list" + } + ], + "type": "li" + }, + { + "children": [ + { + "text": "unordered list" + } + ], + "type": "li" + } + ], + "type": "ul" + } + ] + }, + "bde519a7-d6c0-4bf5-b84b-d832f7f4cdd6": { + "@type": "gridBlock", + "blocks": { + "38e1fde4-8886-4673-9316-5e1b96bcc222": { + "@type": "slate", + "plaintext": "Text Heading (H2, 30/36px)\nFor grid blocks, the font of the headlines are variable, depending on the number of cells in the grid.", + "value": [ + { + "children": [ + { + "text": "Text Heading (H2, 30/36px)" + } + ], + "type": "h2" + }, + { + "children": [ + { + "text": "For grid blocks, the font of the headlines are variable, depending on the number of cells in the grid." + } + ], + "type": "p" + } + ] + } + }, + "blocks_layout": { + "items": [ + "38e1fde4-8886-4673-9316-5e1b96bcc222" + ] + }, + "styles": {} + }, + "bdeb47df-9fb6-48ad-a633-2c7532c8694d": { + "@type": "slate", + "plaintext": "blockquote", + "value": [ + { + "children": [ + { + "text": "blockquote" + } + ], + "type": "p" + } + ] + }, + "caa483f6-bc0f-4a5a-94d2-925897969928": { + "@type": "slateTable", + "styles": {}, + "table": { + "basic": false, + "celled": true, + "compact": false, + "fixed": true, + "hideHeaders": false, + "inverted": false, + "rows": [ + { + "cells": [ + { + "key": "do0ad", + "type": "header", + "value": [ + { + "children": [ + { + "text": "Table Header (THEAD, 18/24)" + } + ], + "type": "p" + } + ] + }, + { + "key": "aav18", + "type": "header", + "value": [ + { + "children": [ + { + "text": "Table Header (THEAD, 18/24)" + } + ], + "type": "p" + } + ] + } + ], + "key": "117r7" + }, + { + "cells": [ + { + "key": "arr02", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Table cell (td p, 18/24px)" + } + ], + "type": "p" + } + ] + }, + { + "key": "81nda", + "type": "data", + "value": [ + { + "children": [ + { + "text": "Table cell (td p, 18/24px)" + } + ], + "type": "p" + } + ] + } + ], + "key": "5psue" + } + ], + "striped": false + } + }, + "dc27e427-babe-4497-a6ae-fdefeaba2d13": { + "@type": "__button", + "inneralign": "left", + "styles": {}, + "title": "Button text (button, 18/24px)" + }, + "e770913c-fb7b-4cf1-94a8-7eb6e24ff66e": { + "@type": "slate", + "plaintext": "", + "value": [ + { + "children": [ + { + "text": "" + } + ], + "type": "p" + } + ] + }, + "f4104455-1f80-4209-827d-416f2f07dec9": { + "@type": "image", + "align": "center", + "allow_image_download": false, + "credit": {}, + "description": "Caption Description (14/18px). The Image content type can be used to upload an image in various formats (JPG, GIF, PNG, SVG). The uploaded image should always have a high resolution so that it can be used flexibly, for example as a banner image. Plone automatically delivers the images in the best scaling, so there is no need to scale images down manually.", + "image_field": "image", + "size": "l", + "title": "Caption Title (14/18px). Image", + "url": "http://host.docker.internal:8080/Plone/content-types/image" + }, + "f5858bf7-5485-479c-b0b2-10eee0dc937c": { + "@type": "slate", + "plaintext": "Text Heading H2 (H2, 30/36px)", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Text Heading H2 (H2, 30/36px)" + } + ], + "type": "h2" + } + ] + } + }, + "blocks_layout": { + "items": [ + "a6cad3f3-57e8-4bb7-8ac2-b12096e974d2", + "8fe8fc9b-221c-4c74-b66f-671d638222f3", + "4be85eba-b165-4a87-8585-d8697616004d", + "4092b07d-31df-4aaa-9cfd-5bbdf814bb04", + "f5858bf7-5485-479c-b0b2-10eee0dc937c", + "11e4610d-dfac-493d-b9be-345949ca3276", + "b8c4c6dc-47f1-493d-a2ba-d1ca958def4a", + "5991123b-bf50-4684-ba6e-6a4f582d4640", + "bdeb47df-9fb6-48ad-a633-2c7532c8694d", + "4a035155-91fc-4371-82e8-b6d56866647f", + "0a8e2813-414f-42f7-9aee-7ae6df4c338e", + "9f276d9d-f3c9-4529-9a69-9c93f2d6c5ea", + "55d58a5e-01a0-469e-b80b-3a5059593833", + "96e308ec-74e6-4ddd-bf31-4a9e66e0584e", + "875e2811-edb6-4842-8cc0-246fa1be6f58", + "f4104455-1f80-4209-827d-416f2f07dec9", + "dc27e427-babe-4497-a6ae-fdefeaba2d13", + "bde519a7-d6c0-4bf5-b84b-d832f7f4cdd6", + "af96daae-955d-42f8-a5e7-c7943fb2e321", + "47cef702-7d66-4313-b3ec-585408735218", + "caa483f6-bc0f-4a5a-94d2-925897969928", + "e770913c-fb7b-4cf1-94a8-7eb6e24ff66e" + ] + }, + "contributors": [], + "created": "2023-07-06T21:35:22+00:00", + "creators": [ + "admin" + ], + "description": "This page has a sample of the typography available in the theme.", + "effective": "2023-07-06T18:35:00", + "exclude_from_nav": false, + "expires": null, + "id": "typography", + "is_folderish": true, + "language": "en", + "layout": "document_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2024-03-09T09:53:01+00:00", + "parent": { + "@id": "/content-types", + "@type": "Document", + "UID": "e8178744e30a418b9a5768997bb29a19", + "description": "This section has a sample of content types available in this site.", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Content Types", + "type_title": "Page" + }, + "preview_caption": null, + "preview_image": null, + "review_state": "published", + "rights": "", + "subjects": [], + "title": "Typography - Page Title (H1, 48/56px)", + "type_title": "Page", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2023-07-06T21:35:22+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2023-07-06T21:35:22+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/38.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/38.json new file mode 100644 index 0000000..3581b2f --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/38.json @@ -0,0 +1,93 @@ +{ + "@id": "/images", + "@type": "Document", + "UID": "342acac105fe4a43ae0a19d49d752e0b", + "allow_discussion": false, + "blocks": { + "183bf050-57b7-4841-b9c8-f9b5a15fe086": { + "@type": "listing", + "headlineTag": "h2", + "styles": {}, + "variation": "imageGallery" + }, + "2d181d1f-1fac-420a-b410-4f4d5379f8ea": { + "@type": "slate", + "plaintext": "", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "" + } + ], + "type": "p" + } + ] + }, + "55e93046-15ee-41f5-b63c-fde0d9b6ce52": { + "@type": "title" + } + }, + "blocks_layout": { + "items": [ + "55e93046-15ee-41f5-b63c-fde0d9b6ce52", + "183bf050-57b7-4841-b9c8-f9b5a15fe086", + "2d181d1f-1fac-420a-b410-4f4d5379f8ea" + ] + }, + "contributors": [], + "created": "2024-03-08T12:05:38+00:00", + "creators": [ + "admin" + ], + "description": "", + "effective": "2024-03-08T15:35:00", + "exclude_from_nav": true, + "expires": null, + "id": "images", + "is_folderish": true, + "language": "en", + "layout": "document_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2024-03-09T09:14:28+00:00", + "parent": { + "@id": "/", + "@type": "Plone Site", + "UID": "87f1f0ea555d423698c3ce09e17d7873", + "description": "Site created with a new Plone Distribution", + "title": "Welcome to Plone 6", + "type_title": "Plone Site" + }, + "preview_caption": null, + "preview_image": null, + "review_state": "published", + "rights": "", + "subjects": [], + "title": "Images", + "type_title": "Page", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2024-03-08T12:05:38+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2024-03-08T14:35:43+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/39.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/39.json new file mode 100644 index 0000000..cc510ea --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/39.json @@ -0,0 +1,48 @@ +{ + "@id": "/images/penguin1.jpg", + "@type": "Image", + "UID": "9abc1a813bcf46388e565b277bd8c6bf", + "allow_discussion": false, + "contributors": [], + "created": "2024-03-07T11:29:54+00:00", + "creators": [ + "admin" + ], + "description": "", + "effective": null, + "exclude_from_nav": false, + "expires": null, + "id": "penguin1.jpg", + "image": { + "blob_path": "blobs/9abc1a813bcf46388e565b277bd8c6bf-image/penguin1.jpg", + "content-type": "image/jpeg", + "filename": "penguin1.jpg", + "height": 1286, + "size": 524642, + "width": 1800 + }, + "is_folderish": false, + "language": "en", + "layout": "image_view", + "lock": {}, + "modified": "2024-03-08T15:03:43+00:00", + "parent": { + "@id": "/images", + "@type": "Document", + "UID": "342acac105fe4a43ae0a19d49d752e0b", + "description": "", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Images", + "type_title": "Page" + }, + "review_state": null, + "rights": "", + "subjects": [], + "title": "penguin1.jpg", + "type_title": "Image", + "version": "current", + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/4.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/4.json new file mode 100644 index 0000000..b6d76b7 --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/4.json @@ -0,0 +1,492 @@ +{ + "@id": "/block/button-block", + "@type": "Document", + "UID": "405582582e70493c96a6c549444a1eaa", + "allow_discussion": false, + "blocks": { + "022174c5-3f65-44b7-99de-c8037ff61598": { + "@type": "separator", + "styles": { + "align": "full" + } + }, + "0b8a95f2-1320-4f44-a21d-4cfada6bd222": { + "@type": "__button", + "href": [ + { + "@id": "../../resolveuid/2647c16486eb4c42857e46c2988013e4", + "Description": "example", + "Title": "Example", + "hasPreviewImage": null, + "title": "Example" + } + ], + "inneralign": "center", + "styles": { + "backgroundColor": "grey", + "buttonAlign": "wide" + }, + "title": "Button" + }, + "0d3d0bd6-ee66-44a3-9da8-b5e84ba797e4": { + "@type": "__button", + "href": [ + { + "@id": "../../resolveuid/2647c16486eb4c42857e46c2988013e4", + "Description": "example", + "Title": "Example", + "hasPreviewImage": null, + "title": "Example" + } + ], + "inneralign": "left", + "styles": { + "backgroundColor": "grey", + "buttonAlign": "wide" + }, + "title": "Button" + }, + "108ab524-ac76-4127-b0e6-7227f5ea1549": { + "@type": "separator", + "styles": { + "align": "full", + "backgroundColor": "grey" + } + }, + "18db9de3-b9a3-4ada-a79a-39c7734c1291": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wis enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nib euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi." + } + ], + "type": "p" + } + ] + }, + "1cfea1d8-13df-4bcd-9220-07252085dad7": { + "@type": "separator", + "styles": { + "align": "full" + } + }, + "1e658fdd-1de8-4c00-80e7-5f91155a2a8a": { + "@type": "separator", + "styles": { + "align": "full" + } + }, + "23608517-868c-47e7-b7ac-3dfb015acefe": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi." + } + ], + "type": "p" + } + ] + }, + "2fa5b869-89cd-4d15-aee9-80b4e1bf11a2": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nib euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "styles": { + "backgroundColor": "grey" + }, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nib euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi." + } + ], + "type": "p" + } + ] + }, + "31dcaf51-715a-4458-b11b-5d03a085b90d": { + "@type": "__button", + "href": [ + { + "@id": "../../resolveuid/2647c16486eb4c42857e46c2988013e4", + "Description": "example", + "Title": "Example", + "hasPreviewImage": null, + "title": "Example" + } + ], + "inneralign": "center", + "styles": {}, + "title": "Button" + }, + "35741452-106a-428f-864d-678be9822d87": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nib euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "styles": { + "backgroundColor": "grey" + }, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nib euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi." + } + ], + "type": "p" + } + ] + }, + "46d0b71e-b9ee-481f-a4bf-b98cd7d1a452": { + "@type": "separator", + "styles": { + "align": "full", + "backgroundColor": "grey" + } + }, + "50e24e21-a7fc-478c-9c65-152b5f86352f": { + "@type": "separator", + "styles": { + "align": "full" + } + }, + "561ce253-b5a1-4868-91ce-3f6024cf3a0d": { + "@type": "separator", + "styles": { + "align": "full", + "backgroundColor": "grey" + } + }, + "5b8d1979-adec-479a-ad8d-466fd3012fe5": { + "@type": "separator", + "styles": { + "align": "full" + } + }, + "634edc58-3600-4918-b6e5-0924dce67591": { + "@type": "separator", + "styles": { + "align": "full", + "backgroundColor": "grey" + } + }, + "738b4894-1ed9-4556-8d5e-2d5f5a5e09ae": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nib euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "styles": { + "backgroundColor": "grey" + }, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nib euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi." + } + ], + "type": "p" + } + ] + }, + "7760c976-1716-45d0-a22b-527bed9e8de9": { + "@type": "separator", + "styles": { + "align": "full", + "backgroundColor": "grey" + } + }, + "9aa3c0c3-6565-4e9c-8e27-d07eeedf4314": { + "@type": "__button", + "href": [ + { + "@id": "../../resolveuid/2647c16486eb4c42857e46c2988013e4", + "Description": "example", + "Title": "Example", + "hasPreviewImage": null, + "title": "Example" + } + ], + "inneralign": "right", + "styles": { + "align": "full", + "buttonAlign": "wide" + }, + "title": "Button" + }, + "a0e70eab-97f8-4221-9e1e-e4cfef9ab58d": { + "@type": "heading", + "alignment": "left", + "heading": "Button Block", + "styles": { + "backgroundColor": "grey" + }, + "tag": "h2" + }, + "a8d191e1-5b3a-4ef6-b38f-6cb9af33ff85": { + "@type": "__button", + "href": [ + { + "@id": "../../resolveuid/2647c16486eb4c42857e46c2988013e4", + "Description": "example", + "Title": "Example", + "hasPreviewImage": null, + "title": "Example" + } + ], + "inneralign": "center", + "styles": { + "buttonAlign": "wide" + }, + "title": "Button" + }, + "b03e7ce7-b7b5-4413-bd2e-d42bff4bba9a": { + "@type": "__button", + "href": [ + { + "@id": "../../resolveuid/2647c16486eb4c42857e46c2988013e4", + "Description": "example", + "Title": "Example", + "hasPreviewImage": null, + "title": "Example" + } + ], + "inneralign": "left", + "styles": { + "buttonAlign": "wide" + }, + "title": "Button" + }, + "beef7c11-acca-4e40-8477-e6f2e42d0f06": { + "@type": "__button", + "href": [ + { + "@id": "../../resolveuid/2647c16486eb4c42857e46c2988013e4", + "Description": "example", + "Title": "Example", + "hasPreviewImage": null, + "title": "Example" + } + ], + "inneralign": "left", + "styles": {}, + "title": "Button" + }, + "dd9dc0eb-821a-4581-97af-7e59afc249e1": { + "@type": "__button", + "href": [ + { + "@id": "../../resolveuid/2647c16486eb4c42857e46c2988013e4", + "Description": "example", + "Title": "Example", + "hasPreviewImage": null, + "title": "Example" + } + ], + "inneralign": "right", + "styles": { + "backgroundColor": "grey", + "buttonAlign": "wide" + }, + "title": "Button" + }, + "e150d94a-7a54-451b-8019-31349d98d957": { + "@type": "__button", + "href": [ + { + "@id": "../../resolveuid/2647c16486eb4c42857e46c2988013e4", + "Description": "example", + "Title": "Example", + "hasPreviewImage": null, + "title": "Example" + } + ], + "inneralign": "right", + "styles": {}, + "title": "Button" + }, + "e20c3c62-3c1d-4e45-a5c4-649b81b47a46": { + "@type": "__button", + "href": [ + { + "@id": "../../resolveuid/2647c16486eb4c42857e46c2988013e4", + "Description": "example", + "Title": "Example", + "hasPreviewImage": null, + "title": "Example" + } + ], + "inneralign": "center", + "styles": { + "backgroundColor": "grey", + "buttonAlign": "center" + }, + "title": "Button" + }, + "e5e36303-3541-41d0-8eff-053f90a6d75f": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi." + } + ], + "type": "p" + } + ] + }, + "eab7123b-6a41-4537-8979-09e4fbbf317b": { + "@type": "separator", + "styles": { + "align": "full" + } + }, + "f3ee132b-6215-4e42-b26b-713f668eea61": { + "@type": "title" + }, + "f62e21a3-b906-4c0c-bef8-f42cd9631967": { + "@type": "__button", + "href": [ + { + "@id": "../../resolveuid/2647c16486eb4c42857e46c2988013e4", + "Description": "example", + "Title": "Example", + "hasPreviewImage": null, + "title": "Example" + } + ], + "inneralign": "left", + "styles": { + "backgroundColor": "grey", + "buttonAlign": "center" + }, + "title": "Button" + }, + "fa9321f8-ab68-4ca8-92de-23c5f0662c93": { + "@type": "separator", + "styles": { + "align": "full", + "backgroundColor": "grey" + } + }, + "fc0ddcf5-4acc-4f9b-8c5c-992db47399ce": { + "@type": "__button", + "href": [ + { + "@id": "../../resolveuid/2647c16486eb4c42857e46c2988013e4", + "Description": "example", + "Title": "Example", + "hasPreviewImage": null, + "title": "Example" + } + ], + "inneralign": "right", + "styles": { + "backgroundColor": "grey", + "buttonAlign": "center" + }, + "title": "Button" + } + }, + "blocks_layout": { + "items": [ + "f3ee132b-6215-4e42-b26b-713f668eea61", + "eab7123b-6a41-4537-8979-09e4fbbf317b", + "b03e7ce7-b7b5-4413-bd2e-d42bff4bba9a", + "1cfea1d8-13df-4bcd-9220-07252085dad7", + "a8d191e1-5b3a-4ef6-b38f-6cb9af33ff85", + "1e658fdd-1de8-4c00-80e7-5f91155a2a8a", + "9aa3c0c3-6565-4e9c-8e27-d07eeedf4314", + "5b8d1979-adec-479a-ad8d-466fd3012fe5", + "18db9de3-b9a3-4ada-a79a-39c7734c1291", + "beef7c11-acca-4e40-8477-e6f2e42d0f06", + "022174c5-3f65-44b7-99de-c8037ff61598", + "23608517-868c-47e7-b7ac-3dfb015acefe", + "31dcaf51-715a-4458-b11b-5d03a085b90d", + "50e24e21-a7fc-478c-9c65-152b5f86352f", + "e5e36303-3541-41d0-8eff-053f90a6d75f", + "e150d94a-7a54-451b-8019-31349d98d957", + "a0e70eab-97f8-4221-9e1e-e4cfef9ab58d", + "634edc58-3600-4918-b6e5-0924dce67591", + "0d3d0bd6-ee66-44a3-9da8-b5e84ba797e4", + "561ce253-b5a1-4868-91ce-3f6024cf3a0d", + "0b8a95f2-1320-4f44-a21d-4cfada6bd222", + "46d0b71e-b9ee-481f-a4bf-b98cd7d1a452", + "dd9dc0eb-821a-4581-97af-7e59afc249e1", + "fa9321f8-ab68-4ca8-92de-23c5f0662c93", + "35741452-106a-428f-864d-678be9822d87", + "f62e21a3-b906-4c0c-bef8-f42cd9631967", + "108ab524-ac76-4127-b0e6-7227f5ea1549", + "738b4894-1ed9-4556-8d5e-2d5f5a5e09ae", + "e20c3c62-3c1d-4e45-a5c4-649b81b47a46", + "7760c976-1716-45d0-a22b-527bed9e8de9", + "2fa5b869-89cd-4d15-aee9-80b4e1bf11a2", + "fc0ddcf5-4acc-4f9b-8c5c-992db47399ce" + ] + }, + "contributors": [], + "created": "2023-07-06T21:35:07+00:00", + "creators": [ + "admin" + ], + "description": "\nThe button block shows a button for which a link (internal or external) can be stored. The button can be displayed left, right or center and have a background color.", + "effective": "2023-07-06T18:35:00", + "exclude_from_nav": false, + "expires": null, + "id": "button-block", + "is_folderish": true, + "language": "en", + "layout": "document_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2023-09-22T14:30:34+00:00", + "parent": { + "@id": "/block", + "@type": "Document", + "UID": "425695d2b7cb47e69374d6f211f17e38", + "description": "", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Blocks", + "type_title": "Page" + }, + "preview_caption": null, + "preview_image": null, + "review_state": "published", + "rights": "", + "subjects": [], + "title": "Button", + "type_title": "Page", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2023-07-06T21:35:07+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2023-07-06T21:35:07+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/40.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/40.json new file mode 100644 index 0000000..a1c68f0 --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/40.json @@ -0,0 +1,48 @@ +{ + "@id": "/images/penguin2.jpg", + "@type": "Image", + "UID": "05bace45294c45d5ab93de883e7ce702", + "allow_discussion": false, + "contributors": [], + "created": "2024-03-08T12:05:46+00:00", + "creators": [ + "admin" + ], + "description": "", + "effective": null, + "exclude_from_nav": false, + "expires": null, + "id": "penguin2.jpg", + "image": { + "blob_path": "blobs/05bace45294c45d5ab93de883e7ce702-image/penguin2.jpg", + "content-type": "image/jpeg", + "filename": "penguin2.jpg", + "height": 3456, + "size": 2921923, + "width": 5184 + }, + "is_folderish": false, + "language": "en", + "layout": "image_view", + "lock": {}, + "modified": "2024-03-08T12:05:46+00:00", + "parent": { + "@id": "/images", + "@type": "Document", + "UID": "342acac105fe4a43ae0a19d49d752e0b", + "description": "", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Images", + "type_title": "Page" + }, + "review_state": null, + "rights": "", + "subjects": [], + "title": "penguin2.jpg", + "type_title": "Image", + "version": "current", + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/41.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/41.json new file mode 100644 index 0000000..0c30945 --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/41.json @@ -0,0 +1,48 @@ +{ + "@id": "/images/penguin3.jpg", + "@type": "Image", + "UID": "7de78fea55354a29ad78b909efb07436", + "allow_discussion": false, + "contributors": [], + "created": "2024-03-08T12:05:46+00:00", + "creators": [ + "admin" + ], + "description": "", + "effective": null, + "exclude_from_nav": false, + "expires": null, + "id": "penguin3.jpg", + "image": { + "blob_path": "blobs/7de78fea55354a29ad78b909efb07436-image/penguin3.jpg", + "content-type": "image/jpeg", + "filename": "penguin3.jpg", + "height": 1278, + "size": 129906, + "width": 1920 + }, + "is_folderish": false, + "language": "en", + "layout": "image_view", + "lock": {}, + "modified": "2024-03-08T15:00:24+00:00", + "parent": { + "@id": "/images", + "@type": "Document", + "UID": "342acac105fe4a43ae0a19d49d752e0b", + "description": "", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Images", + "type_title": "Page" + }, + "review_state": null, + "rights": "", + "subjects": [], + "title": "penguin3.jpg", + "type_title": "Image", + "version": "current", + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/42.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/42.json new file mode 100644 index 0000000..20ddec5 --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/42.json @@ -0,0 +1,48 @@ +{ + "@id": "/images/penguin4.jpg", + "@type": "Image", + "UID": "0c351dd841c34c6da9c313b1bc551e34", + "allow_discussion": false, + "contributors": [], + "created": "2024-03-08T12:05:46+00:00", + "creators": [ + "admin" + ], + "description": "", + "effective": null, + "exclude_from_nav": false, + "expires": null, + "id": "penguin4.jpg", + "image": { + "blob_path": "blobs/0c351dd841c34c6da9c313b1bc551e34-image/penguin4.jpg", + "content-type": "image/jpeg", + "filename": "penguin4.jpg", + "height": 3024, + "size": 917167, + "width": 4032 + }, + "is_folderish": false, + "language": "en", + "layout": "image_view", + "lock": {}, + "modified": "2024-03-08T12:05:46+00:00", + "parent": { + "@id": "/images", + "@type": "Document", + "UID": "342acac105fe4a43ae0a19d49d752e0b", + "description": "", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Images", + "type_title": "Page" + }, + "review_state": null, + "rights": "", + "subjects": [], + "title": "penguin4.jpg", + "type_title": "Image", + "version": "current", + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/43.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/43.json new file mode 100644 index 0000000..a3c7198 --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/43.json @@ -0,0 +1,45 @@ +{ + "@id": "/plone-foundation.png", + "@type": "Image", + "UID": "a5bf990b119747c4b2855fedc1ea0185", + "allow_discussion": false, + "contributors": [], + "created": "2024-03-08T11:49:00+00:00", + "creators": [ + "admin" + ], + "description": "", + "effective": null, + "exclude_from_nav": false, + "expires": null, + "id": "plone-foundation.png", + "image": { + "blob_path": "blobs/a5bf990b119747c4b2855fedc1ea0185-image/image.png", + "content-type": "image/png", + "filename": "image.png", + "height": 439, + "size": 50737, + "width": 2000 + }, + "is_folderish": false, + "language": "en", + "layout": "image_view", + "lock": {}, + "modified": "2024-03-08T12:01:50+00:00", + "parent": { + "@id": "/", + "@type": "Plone Site", + "UID": "87f1f0ea555d423698c3ce09e17d7873", + "description": "Site created with a new Plone Distribution", + "title": "Welcome to Plone 6", + "type_title": "Plone Site" + }, + "review_state": null, + "rights": "", + "subjects": [], + "title": "Plone Foundation Logo", + "type_title": "Image", + "version": "current", + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/44.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/44.json new file mode 100644 index 0000000..aceb428 --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/44.json @@ -0,0 +1,92 @@ +{ + "@id": "/vertical-spacing", + "@type": "Document", + "UID": "c40a2be214b645338a7ef2e711e2f5c6", + "allow_discussion": false, + "blocks": { + "981e5308-f092-4bab-96aa-b162be613ebd": { + "@type": "slate", + "plaintext": "", + "value": [ + { + "children": [ + { + "text": "" + } + ], + "type": "p" + } + ] + }, + "9cbef37f-c4c2-4fa8-b27e-2376c8261d5a": { + "@type": "title" + }, + "f03d33a6-c4fe-4f6f-b0f5-ca2a483214ae": { + "@type": "listing", + "block": "f03d33a6-c4fe-4f6f-b0f5-ca2a483214ae", + "query": [], + "variation": "default" + } + }, + "blocks_layout": { + "items": [ + "9cbef37f-c4c2-4fa8-b27e-2376c8261d5a", + "f03d33a6-c4fe-4f6f-b0f5-ca2a483214ae", + "981e5308-f092-4bab-96aa-b162be613ebd" + ] + }, + "contributors": [], + "created": "2023-07-06T21:35:22+00:00", + "creators": [ + "admin" + ], + "description": "", + "effective": "2023-07-06T18:35:00", + "exclude_from_nav": false, + "expires": null, + "id": "vertical-spacing", + "is_folderish": true, + "language": "en", + "layout": "document_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2024-03-09T09:14:28+00:00", + "parent": { + "@id": "/", + "@type": "Plone Site", + "UID": "87f1f0ea555d423698c3ce09e17d7873", + "description": "Site created with a new Plone Distribution", + "title": "Welcome to Plone 6", + "type_title": "Plone Site" + }, + "preview_caption": null, + "preview_image": null, + "review_state": "published", + "rights": "", + "subjects": [], + "title": "Vertical Spacing", + "type_title": "Page", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2023-07-06T21:35:22+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2023-07-06T21:35:22+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/45.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/45.json new file mode 100644 index 0000000..3f77b06 --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/45.json @@ -0,0 +1,381 @@ +{ + "@id": "/vertical-spacing/grid-and-button", + "@type": "Document", + "UID": "f0018ecb26ac442aa1f03482a09c8b81", + "allow_discussion": false, + "blocks": { + "09e2b7da-59b3-4aca-84e0-d21e910f6700": { + "@type": "__button", + "inneralign": "left", + "styles": { + "backgroundColor": "grey" + } + }, + "40eeb312-119e-44ee-a4da-fab908083d04": { + "@type": "gridBlock", + "blocks": { + "3131582e-133c-49f1-8f8a-84178fa65bdf": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "head_title": null, + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "Title": "Inhaltstyp: Seite (Page)", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Inhaltstyp: Seite (Page)" + } + ], + "styles": { + "align": "left" + }, + "title": "Inhaltstyp: Seite (Page)" + }, + "f3719d15-b7aa-491b-951b-afe82762bc74": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "head_title": null, + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "Title": "Inhaltstyp: Seite (Page)", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Inhaltstyp: Seite (Page)" + } + ], + "styles": { + "align": "left" + }, + "title": "Inhaltstyp: Seite (Page)" + } + }, + "blocks_layout": { + "items": [ + "f3719d15-b7aa-491b-951b-afe82762bc74", + "3131582e-133c-49f1-8f8a-84178fa65bdf" + ] + }, + "styles": {} + }, + "4e9eb380-26e1-4840-861c-b3b269ba6fd3": { + "@type": "gridBlock", + "blocks": { + "3131582e-133c-49f1-8f8a-84178fa65bdf": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "head_title": null, + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "Title": "Inhaltstyp: Seite (Page)", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Inhaltstyp: Seite (Page)" + } + ], + "styles": { + "align": "left" + }, + "title": "Inhaltstyp: Seite (Page)" + }, + "f3719d15-b7aa-491b-951b-afe82762bc74": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "head_title": null, + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "Title": "Inhaltstyp: Seite (Page)", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Inhaltstyp: Seite (Page)" + } + ], + "styles": { + "align": "left" + }, + "title": "Inhaltstyp: Seite (Page)" + } + }, + "blocks_layout": { + "items": [ + "f3719d15-b7aa-491b-951b-afe82762bc74", + "3131582e-133c-49f1-8f8a-84178fa65bdf" + ] + }, + "styles": {} + }, + "56d0c2cc-77db-4ca9-8a75-5153206733f8": { + "@type": "title" + }, + "737892ac-6258-4558-a873-1ab20b16adf8": { + "@type": "gridBlock", + "blocks": { + "3131582e-133c-49f1-8f8a-84178fa65bdf": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "head_title": null, + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "Title": "Inhaltstyp: Seite (Page)", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Inhaltstyp: Seite (Page)" + } + ], + "styles": { + "align": "left" + }, + "title": "Inhaltstyp: Seite (Page)" + }, + "f3719d15-b7aa-491b-951b-afe82762bc74": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "head_title": null, + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "Title": "Page", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Page" + } + ], + "styles": { + "align": "left" + }, + "title": "Inhaltstyp: Seite (Page)" + } + }, + "blocks_layout": { + "items": [ + "f3719d15-b7aa-491b-951b-afe82762bc74", + "3131582e-133c-49f1-8f8a-84178fa65bdf" + ] + }, + "styles": {} + }, + "7c111480-cf9a-469c-8d95-d79aeda7281e": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Vivamus suscipit tortor eget felis porttitor volutpat. Pellentesque in ipsum id orci porta dapibus. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Vivamus suscipit tortor eget felis porttitor volutpat. Pellentesque in ipsum id orci porta dapibus. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui." + } + ], + "type": "p" + } + ] + }, + "94d7dd2e-4b12-43d6-a79c-e49f85818042": { + "@type": "__button", + "inneralign": "left", + "styles": {} + }, + "cb28e9c6-7ae8-4aa6-b081-48ed87867c0e": { + "@type": "__button", + "inneralign": "left", + "styles": { + "backgroundColor": "grey" + } + }, + "e40d01ac-6b59-4da0-9f70-a7f6f9ee8289": { + "@type": "__button", + "inneralign": "left", + "styles": {} + }, + "e57d83d2-3534-42ad-bd2e-681804c07055": { + "@type": "gridBlock", + "blocks": { + "3131582e-133c-49f1-8f8a-84178fa65bdf": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "head_title": null, + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "Title": "Inhaltstyp: Seite (Page)", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Inhaltstyp: Seite (Page)" + } + ], + "styles": { + "align": "left" + }, + "title": "Inhaltstyp: Seite (Page)" + }, + "f3719d15-b7aa-491b-951b-afe82762bc74": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "head_title": null, + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "Title": "Inhaltstyp: Seite (Page)", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Inhaltstyp: Seite (Page)" + } + ], + "styles": { + "align": "left" + }, + "title": "Inhaltstyp: Seite (Page)" + } + }, + "blocks_layout": { + "items": [ + "f3719d15-b7aa-491b-951b-afe82762bc74", + "3131582e-133c-49f1-8f8a-84178fa65bdf" + ] + }, + "styles": { + "backgroundColor": "grey" + } + }, + "ee448ae9-5d4d-4511-9fda-ff528b909279": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Vivamus suscipit tortor eget felis porttitor volutpat. Pellentesque in ipsum id orci porta dapibus. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.", + "styles": { + "backgroundColor": "grey" + }, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Vivamus suscipit tortor eget felis porttitor volutpat. Pellentesque in ipsum id orci porta dapibus. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui." + } + ], + "type": "p" + } + ] + }, + "f2a4fae7-5a93-4ad3-9bdc-9f87fb01cdf6": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Vivamus suscipit tortor eget felis porttitor volutpat. Pellentesque in ipsum id orci porta dapibus. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Vivamus suscipit tortor eget felis porttitor volutpat. Pellentesque in ipsum id orci porta dapibus. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui." + } + ], + "type": "p" + } + ] + } + }, + "blocks_layout": { + "items": [ + "56d0c2cc-77db-4ca9-8a75-5153206733f8", + "737892ac-6258-4558-a873-1ab20b16adf8", + "e40d01ac-6b59-4da0-9f70-a7f6f9ee8289", + "f2a4fae7-5a93-4ad3-9bdc-9f87fb01cdf6", + "94d7dd2e-4b12-43d6-a79c-e49f85818042", + "4e9eb380-26e1-4840-861c-b3b269ba6fd3", + "7c111480-cf9a-469c-8d95-d79aeda7281e", + "e57d83d2-3534-42ad-bd2e-681804c07055", + "cb28e9c6-7ae8-4aa6-b081-48ed87867c0e", + "ee448ae9-5d4d-4511-9fda-ff528b909279", + "09e2b7da-59b3-4aca-84e0-d21e910f6700", + "40eeb312-119e-44ee-a4da-fab908083d04" + ] + }, + "contributors": [], + "created": "2023-07-06T21:35:22+00:00", + "creators": [ + "admin" + ], + "description": "", + "effective": "2023-07-06T18:35:00", + "exclude_from_nav": false, + "expires": null, + "id": "grid-and-button", + "is_folderish": true, + "language": "en", + "layout": "document_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2024-03-09T09:50:15+00:00", + "parent": { + "@id": "/vertical-spacing", + "@type": "Document", + "UID": "c40a2be214b645338a7ef2e711e2f5c6", + "description": "", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Vertical Spacing", + "type_title": "Page" + }, + "preview_caption": null, + "preview_image": null, + "review_state": "published", + "rights": "", + "subjects": [], + "title": "Grid and Button", + "type_title": "Page", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2023-07-06T21:35:22+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2023-07-06T21:35:22+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/46.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/46.json new file mode 100644 index 0000000..961cdad --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/46.json @@ -0,0 +1,647 @@ +{ + "@id": "/vertical-spacing/grid-and-grids", + "@type": "Document", + "UID": "c8531174ccd54e39a284a347e9cece83", + "allow_discussion": false, + "blocks": { + "1f2a58b8-c413-4728-a70a-5d812924fbea": { + "@type": "gridBlock", + "blocks": { + "3131582e-133c-49f1-8f8a-84178fa65bdf": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "head_title": null, + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "Title": "Inhaltstyp: Seite (Page)", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Inhaltstyp: Seite (Page)" + } + ], + "styles": { + "align": "left" + }, + "title": "Inhaltstyp: Seite (Page)" + }, + "f3719d15-b7aa-491b-951b-afe82762bc74": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "head_title": null, + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "Title": "Inhaltstyp: Seite (Page)", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Inhaltstyp: Seite (Page)" + } + ], + "styles": { + "align": "left" + }, + "title": "Inhaltstyp: Seite (Page)" + } + }, + "blocks_layout": { + "items": [ + "f3719d15-b7aa-491b-951b-afe82762bc74", + "3131582e-133c-49f1-8f8a-84178fa65bdf" + ] + }, + "headline": "This one has heading", + "styles": { + "backgroundColor": "grey" + } + }, + "30c66237-18ee-4a06-94af-15990b665afc": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Vivamus suscipit tortor eget felis porttitor volutpat. Pellentesque in ipsum id orci porta dapibus. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.", + "styles": { + "backgroundColor": "grey" + }, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Vivamus suscipit tortor eget felis porttitor volutpat. Pellentesque in ipsum id orci porta dapibus. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui." + } + ], + "type": "p" + } + ] + }, + "555b3527-5e4f-4352-b1ab-6470de45e0de": { + "@type": "gridBlock", + "blocks": { + "3131582e-133c-49f1-8f8a-84178fa65bdf": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "head_title": null, + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "Title": "Inhaltstyp: Seite (Page)", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Inhaltstyp: Seite (Page)" + } + ], + "styles": { + "align": "left" + }, + "title": "Inhaltstyp: Seite (Page)" + }, + "f3719d15-b7aa-491b-951b-afe82762bc74": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "head_title": null, + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "Title": "Inhaltstyp: Seite (Page)", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Inhaltstyp: Seite (Page)" + } + ], + "styles": { + "align": "left" + }, + "title": "Inhaltstyp: Seite (Page)" + } + }, + "blocks_layout": { + "items": [ + "f3719d15-b7aa-491b-951b-afe82762bc74", + "3131582e-133c-49f1-8f8a-84178fa65bdf" + ] + }, + "styles": { + "backgroundColor": "grey" + } + }, + "619991a9-603f-4361-9792-40ef2e1cbb87": { + "@type": "gridBlock", + "blocks": { + "3131582e-133c-49f1-8f8a-84178fa65bdf": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "head_title": null, + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "Title": "Inhaltstyp: Seite (Page)", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Inhaltstyp: Seite (Page)" + } + ], + "styles": { + "align": "left" + }, + "title": "Inhaltstyp: Seite (Page)" + }, + "f3719d15-b7aa-491b-951b-afe82762bc74": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "head_title": null, + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "Title": "Inhaltstyp: Seite (Page)", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Inhaltstyp: Seite (Page)" + } + ], + "styles": { + "align": "left" + }, + "title": "Inhaltstyp: Seite (Page)" + } + }, + "blocks_layout": { + "items": [ + "f3719d15-b7aa-491b-951b-afe82762bc74", + "3131582e-133c-49f1-8f8a-84178fa65bdf" + ] + }, + "styles": { + "backgroundColor": "grey" + } + }, + "705696bb-39fb-499c-8b42-6e3932536314": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus suscipit tortor eget felis porttitor volutpat.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus suscipit tortor eget felis porttitor volutpat." + } + ], + "type": "p" + } + ] + }, + "80f635b1-a885-4255-809e-7b1c2ea91cb1": { + "@type": "gridBlock", + "blocks": { + "3131582e-133c-49f1-8f8a-84178fa65bdf": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "head_title": null, + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "Title": "Inhaltstyp: Seite (Page)", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Inhaltstyp: Seite (Page)" + } + ], + "styles": { + "align": "left" + }, + "title": "Inhaltstyp: Seite (Page)" + }, + "f3719d15-b7aa-491b-951b-afe82762bc74": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "head_title": null, + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "Title": "Inhaltstyp: Seite (Page)", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Inhaltstyp: Seite (Page)" + } + ], + "styles": { + "align": "left" + }, + "title": "Inhaltstyp: Seite (Page)" + } + }, + "blocks_layout": { + "items": [ + "f3719d15-b7aa-491b-951b-afe82762bc74", + "3131582e-133c-49f1-8f8a-84178fa65bdf" + ] + }, + "styles": { + "backgroundColor": "grey" + } + }, + "93975ec3-0a09-4137-afb2-dabe83c6f146": { + "@type": "gridBlock", + "blocks": { + "3131582e-133c-49f1-8f8a-84178fa65bdf": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "head_title": null, + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "Title": "Page", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Page" + } + ], + "styles": { + "align": "left" + }, + "title": "Inhaltstyp: Seite (Page)" + }, + "f3719d15-b7aa-491b-951b-afe82762bc74": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "head_title": null, + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "Title": "Page", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Page" + } + ], + "styles": { + "align": "left" + }, + "title": "Inhaltstyp: Seite (Page)" + } + }, + "blocks_layout": { + "items": [ + "f3719d15-b7aa-491b-951b-afe82762bc74", + "3131582e-133c-49f1-8f8a-84178fa65bdf" + ] + }, + "styles": { + "backgroundColor": "grey" + } + }, + "9f415fb7-24c8-4591-9dd9-b2aa06611c5a": { + "@type": "gridBlock", + "blocks": { + "3131582e-133c-49f1-8f8a-84178fa65bdf": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "head_title": null, + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "Title": "Inhaltstyp: Seite (Page)", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Inhaltstyp: Seite (Page)" + } + ], + "styles": { + "align": "left" + }, + "title": "Inhaltstyp: Seite (Page)" + }, + "f3719d15-b7aa-491b-951b-afe82762bc74": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "head_title": null, + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "Title": "Inhaltstyp: Seite (Page)", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Inhaltstyp: Seite (Page)" + } + ], + "styles": { + "align": "left" + }, + "title": "Inhaltstyp: Seite (Page)" + } + }, + "blocks_layout": { + "items": [ + "f3719d15-b7aa-491b-951b-afe82762bc74", + "3131582e-133c-49f1-8f8a-84178fa65bdf" + ] + }, + "headline": "This one has heading", + "styles": {} + }, + "af8bd9d7-c793-4619-941a-22885c1dcb0f": { + "@type": "title" + }, + "cee20bb3-36fc-427a-8d41-ca0d8d3c4e07": { + "@type": "gridBlock", + "blocks": { + "3131582e-133c-49f1-8f8a-84178fa65bdf": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "head_title": null, + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "Title": "Page", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Page" + } + ], + "styles": { + "align": "left" + }, + "title": "Inhaltstyp: Seite (Page)" + }, + "f3719d15-b7aa-491b-951b-afe82762bc74": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "head_title": null, + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "Title": "Page", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Page" + } + ], + "styles": { + "align": "left" + }, + "title": "Inhaltstyp: Seite (Page)" + } + }, + "blocks_layout": { + "items": [ + "f3719d15-b7aa-491b-951b-afe82762bc74", + "3131582e-133c-49f1-8f8a-84178fa65bdf" + ] + }, + "styles": {} + }, + "d34bd32e-2ece-4cbb-86df-53eac2f77c8c": { + "@type": "gridBlock", + "blocks": { + "3131582e-133c-49f1-8f8a-84178fa65bdf": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "head_title": null, + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "Title": "Inhaltstyp: Seite (Page)", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Inhaltstyp: Seite (Page)" + } + ], + "styles": { + "align": "left" + }, + "title": "Inhaltstyp: Seite (Page)" + }, + "f3719d15-b7aa-491b-951b-afe82762bc74": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "head_title": null, + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "Title": "Inhaltstyp: Seite (Page)", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Inhaltstyp: Seite (Page)" + } + ], + "styles": { + "align": "left" + }, + "title": "Inhaltstyp: Seite (Page)" + } + }, + "blocks_layout": { + "items": [ + "f3719d15-b7aa-491b-951b-afe82762bc74", + "3131582e-133c-49f1-8f8a-84178fa65bdf" + ] + }, + "styles": {} + }, + "d5b58f85-a6e5-43bd-a8e8-e4015f2835c1": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus suscipit tortor eget felis porttitor volutpat.", + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus suscipit tortor eget felis porttitor volutpat." + } + ], + "type": "p" + } + ] + }, + "e56fd4bb-50d8-4d03-98c3-6c099e8320a7": { + "@type": "gridBlock", + "blocks": { + "3131582e-133c-49f1-8f8a-84178fa65bdf": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "head_title": null, + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "Title": "Page", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Page" + } + ], + "styles": { + "align": "left" + }, + "title": "Inhaltstyp: Seite (Page)" + }, + "f3719d15-b7aa-491b-951b-afe82762bc74": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "head_title": null, + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "Title": "Page", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Page" + } + ], + "styles": { + "align": "left" + }, + "title": "Inhaltstyp: Seite (Page)" + } + }, + "blocks_layout": { + "items": [ + "f3719d15-b7aa-491b-951b-afe82762bc74", + "3131582e-133c-49f1-8f8a-84178fa65bdf" + ] + }, + "styles": {} + } + }, + "blocks_layout": { + "items": [ + "af8bd9d7-c793-4619-941a-22885c1dcb0f", + "e56fd4bb-50d8-4d03-98c3-6c099e8320a7", + "93975ec3-0a09-4137-afb2-dabe83c6f146", + "cee20bb3-36fc-427a-8d41-ca0d8d3c4e07", + "d5b58f85-a6e5-43bd-a8e8-e4015f2835c1", + "9f415fb7-24c8-4591-9dd9-b2aa06611c5a", + "d34bd32e-2ece-4cbb-86df-53eac2f77c8c", + "555b3527-5e4f-4352-b1ab-6470de45e0de", + "80f635b1-a885-4255-809e-7b1c2ea91cb1", + "705696bb-39fb-499c-8b42-6e3932536314", + "1f2a58b8-c413-4728-a70a-5d812924fbea", + "619991a9-603f-4361-9792-40ef2e1cbb87", + "30c66237-18ee-4a06-94af-15990b665afc" + ] + }, + "contributors": [], + "created": "2023-07-06T21:35:22+00:00", + "creators": [ + "admin" + ], + "description": "", + "effective": "2023-07-06T18:35:00", + "exclude_from_nav": false, + "expires": null, + "id": "grid-and-grids", + "is_folderish": true, + "language": "en", + "layout": "document_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2024-03-09T09:33:49+00:00", + "parent": { + "@id": "/vertical-spacing", + "@type": "Document", + "UID": "c40a2be214b645338a7ef2e711e2f5c6", + "description": "", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Vertical Spacing", + "type_title": "Page" + }, + "preview_caption": null, + "preview_image": null, + "review_state": "published", + "rights": "", + "subjects": [], + "title": "Grids and Grids", + "type_title": "Page", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2023-07-06T21:35:22+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2023-07-06T21:35:22+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/47.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/47.json new file mode 100644 index 0000000..c155678 --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/47.json @@ -0,0 +1,688 @@ +{ + "@id": "/vertical-spacing/grid-and-text", + "@type": "Document", + "UID": "d2ce9e4549e54ea8978cf521bb997ad4", + "allow_discussion": false, + "blocks": { + "0536f383-67c5-4dd5-bea5-2beb9634117d": { + "@type": "gridBlock", + "blocks": { + "3131582e-133c-49f1-8f8a-84178fa65bdf": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "Title": "Inhaltstyp: Seite (Page)", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Inhaltstyp: Seite (Page)" + } + ], + "styles": { + "align": "left" + }, + "title": "Inhaltstyp: Seite (Page)" + }, + "f3719d15-b7aa-491b-951b-afe82762bc74": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "head_title": null, + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "Title": "Inhaltstyp: Seite (Page)", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Inhaltstyp: Seite (Page)" + } + ], + "styles": { + "align": "left" + }, + "title": "Inhaltstyp: Seite (Page)" + } + }, + "blocks_layout": { + "items": [ + "f3719d15-b7aa-491b-951b-afe82762bc74", + "3131582e-133c-49f1-8f8a-84178fa65bdf" + ] + }, + "styles": {} + }, + "0a7df975-3501-441e-8f53-c7dc24fe914d": { + "@type": "gridBlock", + "blocks": { + "3131582e-133c-49f1-8f8a-84178fa65bdf": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "Title": "Inhaltstyp: Seite (Page)", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Inhaltstyp: Seite (Page)" + } + ], + "styles": { + "align": "left" + }, + "title": "Inhaltstyp: Seite (Page)" + }, + "f3719d15-b7aa-491b-951b-afe82762bc74": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "head_title": null, + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "Title": "Inhaltstyp: Seite (Page)", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Inhaltstyp: Seite (Page)" + } + ], + "styles": { + "align": "left" + }, + "title": "Inhaltstyp: Seite (Page)" + } + }, + "blocks_layout": { + "items": [ + "f3719d15-b7aa-491b-951b-afe82762bc74", + "3131582e-133c-49f1-8f8a-84178fa65bdf" + ] + }, + "headline": "This one has heading", + "styles": { + "backgroundColor": "grey" + } + }, + "1f093823-26d5-4fdf-ae88-3c9f06e5c1eb": { + "@type": "gridBlock", + "blocks": { + "3131582e-133c-49f1-8f8a-84178fa65bdf": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "Title": "Inhaltstyp: Seite (Page)", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Inhaltstyp: Seite (Page)" + } + ], + "styles": { + "align": "left" + }, + "title": "Inhaltstyp: Seite (Page)" + }, + "f3719d15-b7aa-491b-951b-afe82762bc74": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "head_title": null, + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "Title": "Inhaltstyp: Seite (Page)", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Inhaltstyp: Seite (Page)" + } + ], + "styles": { + "align": "left" + }, + "title": "Inhaltstyp: Seite (Page)" + } + }, + "blocks_layout": { + "items": [ + "f3719d15-b7aa-491b-951b-afe82762bc74", + "3131582e-133c-49f1-8f8a-84178fa65bdf" + ] + }, + "styles": { + "backgroundColor": "grey" + } + }, + "30c66237-18ee-4a06-94af-15990b665afc": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Vivamus suscipit tortor eget felis porttitor volutpat. Pellentesque in ipsum id orci porta dapibus. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.", + "styles": { + "backgroundColor": "grey" + }, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Vivamus suscipit tortor eget felis porttitor volutpat. Pellentesque in ipsum id orci porta dapibus. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui." + } + ], + "type": "p" + } + ] + }, + "317b5eeb-5e10-4973-bc71-ae290af99ec2": { + "@type": "gridBlock", + "blocks": { + "3131582e-133c-49f1-8f8a-84178fa65bdf": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "head_title": null, + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "Title": "Inhaltstyp: Seite (Page)", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Inhaltstyp: Seite (Page)" + } + ], + "styles": { + "align": "left" + }, + "title": "Inhaltstyp: Seite (Page)" + }, + "f3719d15-b7aa-491b-951b-afe82762bc74": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "head_title": null, + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "Title": "Inhaltstyp: Seite (Page)", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Inhaltstyp: Seite (Page)" + } + ], + "styles": { + "align": "left" + }, + "title": "Inhaltstyp: Seite (Page)" + } + }, + "blocks_layout": { + "items": [ + "f3719d15-b7aa-491b-951b-afe82762bc74", + "3131582e-133c-49f1-8f8a-84178fa65bdf" + ] + }, + "styles": {} + }, + "5ab89496-cf45-488d-a33c-45a3c76cf127": { + "@type": "gridBlock", + "blocks": { + "3131582e-133c-49f1-8f8a-84178fa65bdf": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "Title": "Inhaltstyp: Seite (Page)", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Inhaltstyp: Seite (Page)" + } + ], + "styles": { + "align": "left" + }, + "title": "Inhaltstyp: Seite (Page)" + }, + "f3719d15-b7aa-491b-951b-afe82762bc74": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "head_title": null, + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "Title": "Inhaltstyp: Seite (Page)", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Inhaltstyp: Seite (Page)" + } + ], + "styles": { + "align": "left" + }, + "title": "Inhaltstyp: Seite (Page)" + } + }, + "blocks_layout": { + "items": [ + "f3719d15-b7aa-491b-951b-afe82762bc74", + "3131582e-133c-49f1-8f8a-84178fa65bdf" + ] + }, + "styles": { + "backgroundColor": "grey" + } + }, + "6441a8e3-f9da-4f09-bbd7-6675b7f008d7": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus suscipit tortor eget felis porttitor volutpat.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus suscipit tortor eget felis porttitor volutpat." + } + ], + "type": "p" + } + ] + }, + "705696bb-39fb-499c-8b42-6e3932536314": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus suscipit tortor eget felis porttitor volutpat.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus suscipit tortor eget felis porttitor volutpat." + } + ], + "type": "p" + } + ] + }, + "74917510-d25c-47d9-a2b9-2c3673557770": { + "@type": "gridBlock", + "blocks": { + "3131582e-133c-49f1-8f8a-84178fa65bdf": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "head_title": null, + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "Title": "Inhaltstyp: Seite (Page)", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Inhaltstyp: Seite (Page)" + } + ], + "styles": { + "align": "left" + }, + "title": "Inhaltstyp: Seite (Page)" + }, + "f3719d15-b7aa-491b-951b-afe82762bc74": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "head_title": null, + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "Title": "Inhaltstyp: Seite (Page)", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Inhaltstyp: Seite (Page)" + } + ], + "styles": { + "align": "left" + }, + "title": "Inhaltstyp: Seite (Page)" + } + }, + "blocks_layout": { + "items": [ + "f3719d15-b7aa-491b-951b-afe82762bc74", + "3131582e-133c-49f1-8f8a-84178fa65bdf" + ] + }, + "styles": {} + }, + "a8f5ba20-b946-41e1-ab05-a00932bbaf20": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus suscipit tortor eget felis porttitor volutpat.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus suscipit tortor eget felis porttitor volutpat." + } + ], + "type": "p" + } + ] + }, + "af8bd9d7-c793-4619-941a-22885c1dcb0f": { + "@type": "title" + }, + "b0d34a30-5468-485e-85e3-34ca6cda31bb": { + "@type": "gridBlock", + "blocks": { + "3131582e-133c-49f1-8f8a-84178fa65bdf": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "Title": "Inhaltstyp: Seite (Page)", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Inhaltstyp: Seite (Page)" + } + ], + "styles": { + "align": "left" + }, + "title": "Inhaltstyp: Seite (Page)" + }, + "f3719d15-b7aa-491b-951b-afe82762bc74": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "head_title": null, + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "Title": "Inhaltstyp: Seite (Page)", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Inhaltstyp: Seite (Page)" + } + ], + "styles": { + "align": "left" + }, + "title": "Inhaltstyp: Seite (Page)" + } + }, + "blocks_layout": { + "items": [ + "f3719d15-b7aa-491b-951b-afe82762bc74", + "3131582e-133c-49f1-8f8a-84178fa65bdf" + ] + }, + "styles": { + "backgroundColor": "grey" + } + }, + "c94ab967-6a88-4a50-b67e-d4ff1b0f8c8c": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus suscipit tortor eget felis porttitor volutpat.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus suscipit tortor eget felis porttitor volutpat." + } + ], + "type": "p" + } + ] + }, + "c9c71312-f7dd-4217-8195-0292796ddc5a": { + "@type": "gridBlock", + "blocks": { + "3131582e-133c-49f1-8f8a-84178fa65bdf": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "Title": "Inhaltstyp: Seite (Page)", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Inhaltstyp: Seite (Page)" + } + ], + "styles": { + "align": "left" + }, + "title": "Inhaltstyp: Seite (Page)" + }, + "f3719d15-b7aa-491b-951b-afe82762bc74": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "head_title": null, + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "Title": "Inhaltstyp: Seite (Page)", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Inhaltstyp: Seite (Page)" + } + ], + "styles": { + "align": "left" + }, + "title": "Inhaltstyp: Seite (Page)" + } + }, + "blocks_layout": { + "items": [ + "f3719d15-b7aa-491b-951b-afe82762bc74", + "3131582e-133c-49f1-8f8a-84178fa65bdf" + ] + }, + "headline": "This one has heading", + "styles": {} + }, + "d5b58f85-a6e5-43bd-a8e8-e4015f2835c1": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus suscipit tortor eget felis porttitor volutpat.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus suscipit tortor eget felis porttitor volutpat." + } + ], + "type": "p" + } + ] + }, + "e99ebd8b-f328-462e-a1eb-f6a0105f3170": { + "@type": "gridBlock", + "blocks": { + "3131582e-133c-49f1-8f8a-84178fa65bdf": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "head_title": null, + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "Title": "Inhaltstyp: Seite (Page)", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Inhaltstyp: Seite (Page)" + } + ], + "styles": { + "align": "left" + }, + "title": "Inhaltstyp: Seite (Page)" + }, + "f3719d15-b7aa-491b-951b-afe82762bc74": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "head_title": null, + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "Title": "Page", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Page" + } + ], + "styles": { + "align": "left" + }, + "title": "Inhaltstyp: Seite (Page)" + } + }, + "blocks_layout": { + "items": [ + "f3719d15-b7aa-491b-951b-afe82762bc74", + "3131582e-133c-49f1-8f8a-84178fa65bdf" + ] + }, + "styles": {} + } + }, + "blocks_layout": { + "items": [ + "af8bd9d7-c793-4619-941a-22885c1dcb0f", + "6441a8e3-f9da-4f09-bbd7-6675b7f008d7", + "e99ebd8b-f328-462e-a1eb-f6a0105f3170", + "c94ab967-6a88-4a50-b67e-d4ff1b0f8c8c", + "317b5eeb-5e10-4973-bc71-ae290af99ec2", + "74917510-d25c-47d9-a2b9-2c3673557770", + "d5b58f85-a6e5-43bd-a8e8-e4015f2835c1", + "c9c71312-f7dd-4217-8195-0292796ddc5a", + "0536f383-67c5-4dd5-bea5-2beb9634117d", + "a8f5ba20-b946-41e1-ab05-a00932bbaf20", + "b0d34a30-5468-485e-85e3-34ca6cda31bb", + "5ab89496-cf45-488d-a33c-45a3c76cf127", + "705696bb-39fb-499c-8b42-6e3932536314", + "0a7df975-3501-441e-8f53-c7dc24fe914d", + "1f093823-26d5-4fdf-ae88-3c9f06e5c1eb", + "30c66237-18ee-4a06-94af-15990b665afc" + ] + }, + "contributors": [], + "created": "2023-07-06T21:35:22+00:00", + "creators": [ + "admin" + ], + "description": "", + "effective": "2023-07-06T18:35:00", + "exclude_from_nav": false, + "expires": null, + "id": "grid-and-text", + "is_folderish": true, + "language": "en", + "layout": "document_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2024-03-09T09:50:41+00:00", + "parent": { + "@id": "/vertical-spacing", + "@type": "Document", + "UID": "c40a2be214b645338a7ef2e711e2f5c6", + "description": "", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Vertical Spacing", + "type_title": "Page" + }, + "preview_caption": null, + "preview_image": null, + "review_state": "published", + "rights": "", + "subjects": [], + "title": "Grids and Text", + "type_title": "Page", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2023-07-06T21:35:22+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2023-07-06T21:35:23+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/48.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/48.json new file mode 100644 index 0000000..89d55f5 --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/48.json @@ -0,0 +1,261 @@ +{ + "@id": "/vertical-spacing/heading-and-introduction", + "@type": "Document", + "UID": "cffd9eef5c154c04891af9ef9185ed8c", + "allow_discussion": false, + "blocks": { + "06a477a3-0d16-4e74-9466-2fd56743e234": { + "@type": "slate", + "plaintext": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Pellentesque in ipsum id orci porta dapibus. Vivamus suscipit tortor eget felis porttitor volutpat. Lorem ipsum dolor sit amet, consectetur adipiscing elit.", + "value": [ + { + "children": [ + { + "text": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Pellentesque in ipsum id orci porta dapibus. Vivamus suscipit tortor eget felis porttitor volutpat. Lorem ipsum dolor sit amet, consectetur adipiscing elit." + } + ], + "type": "p" + } + ] + }, + "070db1c2-eb82-43a0-9a97-77895178c855": { + "@type": "separator" + }, + "16e584fc-97c9-4e63-9805-b56021300eb9": { + "@type": "introduction", + "plaintext": "Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Sed porttitor lectus nibh.", + "value": [ + { + "children": [ + { + "text": "Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Sed porttitor lectus nibh." + } + ], + "type": "p" + } + ] + }, + "2a800015-1cb4-41ec-bdc7-5dbab3797aac": { + "@type": "heading", + "alignment": "left", + "heading": " This is a Heading ", + "styles": { + "backgroundColor": "grey" + }, + "tag": "h2" + }, + "342ea03a-bd83-437a-8740-fe38675a8917": { + "@type": "heading", + "alignment": "left", + "heading": " This is a Heading ", + "styles": { + "backgroundColor": "grey" + }, + "tag": "h2" + }, + "4323824d-ccf8-439e-b15b-23c2d14960ef": { + "@type": "introduction", + "plaintext": "Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Sed porttitor lectus nibh.", + "value": [ + { + "children": [ + { + "text": "Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Sed porttitor lectus nibh." + } + ], + "type": "p" + } + ] + }, + "47f847ce-0804-45c1-9a81-78334c121901": { + "@type": "slate", + "plaintext": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Pellentesque in ipsum id orci porta dapibus. Vivamus suscipit tortor eget felis porttitor volutpat. Lorem ipsum dolor sit amet, consectetur adipiscing elit.", + "styles": { + "backgroundColor": "grey" + }, + "value": [ + { + "children": [ + { + "text": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Pellentesque in ipsum id orci porta dapibus. Vivamus suscipit tortor eget felis porttitor volutpat. Lorem ipsum dolor sit amet, consectetur adipiscing elit." + } + ], + "type": "p" + } + ] + }, + "7c710bd7-53a5-4c46-837d-8339a7f18e26": { + "@type": "separator" + }, + "aeed53e0-e68f-42cd-9ef5-416829054442": { + "@type": "slate", + "plaintext": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Pellentesque in ipsum id orci porta dapibus. Vivamus suscipit tortor eget felis porttitor volutpat. Lorem ipsum dolor sit amet, consectetur adipiscing elit.", + "styles": { + "backgroundColor": "grey" + }, + "value": [ + { + "children": [ + { + "text": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Pellentesque in ipsum id orci porta dapibus. Vivamus suscipit tortor eget felis porttitor volutpat. Lorem ipsum dolor sit amet, consectetur adipiscing elit." + } + ], + "type": "p" + } + ] + }, + "b471b7f1-ce1e-4b5c-b81b-1cc9c179ec2f": { + "@type": "title" + }, + "b89f0933-3beb-48c9-b34c-2e2818e89121": { + "@type": "separator", + "styles": { + "backgroundColor": "grey" + } + }, + "b8c89238-bf86-480c-b99d-b713121864c6": { + "@type": "separator", + "styles": { + "backgroundColor": "grey" + } + }, + "c51365a9-f204-45f2-ba6a-4b3d65c8d071": { + "@type": "introduction", + "plaintext": "Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Sed porttitor lectus nibh.", + "styles": { + "backgroundColor": "grey" + }, + "value": [ + { + "children": [ + { + "text": "Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Sed porttitor lectus nibh." + } + ], + "type": "p" + } + ] + }, + "cbfe21d7-6b19-4c53-891b-28cafab6e6cb": { + "@type": "heading", + "alignment": "left", + "heading": " This is a Heading ", + "tag": "h2" + }, + "d3c84b05-35a6-4614-9a40-a6139f7090b8": { + "@type": "slate", + "plaintext": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Pellentesque in ipsum id orci porta dapibus. Vivamus suscipit tortor eget felis porttitor volutpat. Lorem ipsum dolor sit amet, consectetur adipiscing elit.", + "value": [ + { + "children": [ + { + "text": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Pellentesque in ipsum id orci porta dapibus. Vivamus suscipit tortor eget felis porttitor volutpat. Lorem ipsum dolor sit amet, consectetur adipiscing elit." + } + ], + "type": "p" + } + ] + }, + "d4f0e983-15ff-491c-99f1-641a0f8b5602": { + "@type": "introduction", + "plaintext": "Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Sed porttitor lectus nibh.", + "styles": { + "backgroundColor": "grey" + }, + "value": [ + { + "children": [ + { + "text": "Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Sed porttitor lectus nibh." + } + ], + "type": "p" + } + ] + }, + "df4ac400-3e25-429a-b557-b6856af46395": { + "@type": "heading", + "alignment": "left", + "heading": " This is a Heading ", + "tag": "h2" + } + }, + "blocks_layout": { + "items": [ + "b471b7f1-ce1e-4b5c-b81b-1cc9c179ec2f", + "df4ac400-3e25-429a-b557-b6856af46395", + "4323824d-ccf8-439e-b15b-23c2d14960ef", + "06a477a3-0d16-4e74-9466-2fd56743e234", + "2a800015-1cb4-41ec-bdc7-5dbab3797aac", + "d4f0e983-15ff-491c-99f1-641a0f8b5602", + "47f847ce-0804-45c1-9a81-78334c121901", + "cbfe21d7-6b19-4c53-891b-28cafab6e6cb", + "070db1c2-eb82-43a0-9a97-77895178c855", + "16e584fc-97c9-4e63-9805-b56021300eb9", + "7c710bd7-53a5-4c46-837d-8339a7f18e26", + "d3c84b05-35a6-4614-9a40-a6139f7090b8", + "342ea03a-bd83-437a-8740-fe38675a8917", + "b8c89238-bf86-480c-b99d-b713121864c6", + "c51365a9-f204-45f2-ba6a-4b3d65c8d071", + "b89f0933-3beb-48c9-b34c-2e2818e89121", + "aeed53e0-e68f-42cd-9ef5-416829054442" + ] + }, + "contributors": [], + "created": "2023-07-06T21:35:23+00:00", + "creators": [ + "admin" + ], + "description": "", + "effective": "2023-07-06T18:35:00", + "exclude_from_nav": false, + "expires": null, + "id": "heading-and-introduction", + "is_folderish": true, + "language": "en", + "layout": "document_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2023-09-22T14:07:46+00:00", + "parent": { + "@id": "/vertical-spacing", + "@type": "Document", + "UID": "c40a2be214b645338a7ef2e711e2f5c6", + "description": "", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Vertical Spacing", + "type_title": "Page" + }, + "preview_caption": null, + "preview_image": null, + "review_state": "published", + "rights": "", + "subjects": [], + "title": "Heading and Introduction", + "type_title": "Page", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2023-07-06T21:35:23+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2023-07-06T21:35:23+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/49.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/49.json new file mode 100644 index 0000000..ea9291b --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/49.json @@ -0,0 +1,383 @@ +{ + "@id": "/vertical-spacing/highlight-and-grid", + "@type": "Document", + "UID": "d7c7e8ed1ffb4b2fa20525f4f434ba27", + "allow_discussion": false, + "blocks": { + "16e0d40e-9da7-4523-9cb0-43cf2bfc5fc4": { + "@type": "gridBlock", + "blocks": { + "3131582e-133c-49f1-8f8a-84178fa65bdf": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "head_title": null, + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "Title": "Inhaltstyp: Seite (Page)", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Inhaltstyp: Seite (Page)" + } + ], + "styles": { + "align": "left" + }, + "title": "Inhaltstyp: Seite (Page)" + }, + "f3719d15-b7aa-491b-951b-afe82762bc74": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "head_title": null, + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "Title": "Inhaltstyp: Seite (Page)", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Inhaltstyp: Seite (Page)" + } + ], + "styles": { + "align": "left" + }, + "title": "Inhaltstyp: Seite (Page)" + } + }, + "blocks_layout": { + "items": [ + "f3719d15-b7aa-491b-951b-afe82762bc74", + "3131582e-133c-49f1-8f8a-84178fa65bdf" + ] + }, + "styles": {} + }, + "429c0a28-cf90-4d4d-ad8a-acc904bf3070": { + "@type": "highlight", + "allow_image_download": true, + "alt": "", + "blurhash": "1.3398:L89aT~e:0MMcRln3MwSiZ~EQs6x]", + "button": true, + "buttonLink": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "CreationDate": "2023-07-06T23:35:20+02:00", + "Creator": "admin", + "Date": "2023-07-06T18:35:00+02:00", + "Description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "EffectiveDate": "2023-07-06T18:35:00+02:00", + "ExpirationDate": "None", + "ModificationDate": "2023-09-22T16:25:49+02:00", + "Subject": [], + "Title": "Page", + "Type": "Page", + "UID": "7ab9c48ede33415fa2a66a99549c8f70", + "author_name": null, + "cmf_uid": null, + "commentators": [], + "created": "2023-07-06T21:35:20+00:00", + "description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "effective": "2023-07-06T16:35:00+00:00", + "end": null, + "exclude_from_nav": false, + "expires": "2499-12-30T22:00:00+00:00", + "getIcon": null, + "getId": "page", + "getObjSize": "676.8 KB", + "getPath": "/Plone/content-types/page", + "getRemoteUrl": null, + "getURL": "http://localhost:8080/Plone/content-types/page", + "hasPreviewImage": true, + "head_title": null, + "id": "page", + "image_field": "preview_image", + "in_response_to": null, + "is_folderish": true, + "last_comment_date": null, + "listCreators": [ + "admin" + ], + "location": null, + "mime_type": "text/plain", + "modified": "2023-09-22T14:25:49+00:00", + "nav_title": null, + "portal_type": "Document", + "review_state": "published", + "start": null, + "sync_uid": null, + "title": "Page", + "total_comments": 0, + "type_title": "Page" + } + ], + "buttonText": "Other button text", + "credit": { + "data": "DLR (CC BY-NC-ND 3.0)" + }, + "description_color": "blue3", + "image_field": "image", + "plaintext": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt.", + "styles": { + "descriptionColor": "highlight-custom-color-4" + }, + "title": "Highlight-Block", + "url": "../../resolveuid/6cca02c5580d4f7c865af74835ceab9d", + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt." + } + ], + "type": "p" + } + ] + }, + "4974677f-f93a-41ba-9136-73c7b487754f": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Vivamus suscipit tortor eget felis porttitor volutpat. Pellentesque in ipsum id orci porta dapibus. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.", + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Vivamus suscipit tortor eget felis porttitor volutpat. Pellentesque in ipsum id orci porta dapibus. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui." + } + ], + "type": "p" + } + ] + }, + "a117798d-06a3-4c57-92a9-672f1ce5dc90": { + "@type": "highlight", + "allow_image_download": true, + "alt": "", + "blurhash": "1.3398:L89aT~e:0MMcRln3MwSiZ~EQs6x]", + "button": true, + "buttonLink": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "CreationDate": "2023-07-06T23:35:20+02:00", + "Creator": "admin", + "Date": "2023-07-06T18:35:00+02:00", + "Description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "EffectiveDate": "2023-07-06T18:35:00+02:00", + "ExpirationDate": "None", + "ModificationDate": "2023-09-22T16:25:49+02:00", + "Subject": [], + "Title": "Page", + "Type": "Page", + "UID": "7ab9c48ede33415fa2a66a99549c8f70", + "author_name": null, + "cmf_uid": null, + "commentators": [], + "created": "2023-07-06T21:35:20+00:00", + "description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "effective": "2023-07-06T16:35:00+00:00", + "end": null, + "exclude_from_nav": false, + "expires": "2499-12-30T22:00:00+00:00", + "getIcon": null, + "getId": "page", + "getObjSize": "676.8 KB", + "getPath": "/Plone/content-types/page", + "getRemoteUrl": null, + "getURL": "http://localhost:8080/Plone/content-types/page", + "hasPreviewImage": true, + "head_title": null, + "id": "page", + "image_field": "preview_image", + "in_response_to": null, + "is_folderish": true, + "last_comment_date": null, + "listCreators": [ + "admin" + ], + "location": null, + "mime_type": "text/plain", + "modified": "2023-09-22T14:25:49+00:00", + "nav_title": null, + "portal_type": "Document", + "review_state": "published", + "start": null, + "sync_uid": null, + "title": "Page", + "total_comments": 0, + "type_title": "Page" + } + ], + "buttonText": "Mehr Infos", + "credit": { + "data": "DLR (CC BY-NC-ND 3.0)" + }, + "description_color": "blue3", + "image_field": "image", + "plaintext": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt.", + "styles": { + "descriptionColor": "highlight-custom-color-1" + }, + "title": "Highlight-Block", + "url": "../../resolveuid/eec82559bf3242a6be4d43bc2096f399", + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt." + } + ], + "type": "p" + } + ] + }, + "b249bf0e-2f21-4c54-bfac-d847a473bb0d": { + "@type": "gridBlock", + "blocks": { + "3131582e-133c-49f1-8f8a-84178fa65bdf": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "head_title": null, + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "Title": "Inhaltstyp: Seite (Page)", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Inhaltstyp: Seite (Page)" + } + ], + "styles": { + "align": "left" + }, + "title": "Inhaltstyp: Seite (Page)" + }, + "f3719d15-b7aa-491b-951b-afe82762bc74": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "head_title": null, + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "Title": "Inhaltstyp: Seite (Page)", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Inhaltstyp: Seite (Page)" + } + ], + "styles": { + "align": "left" + }, + "title": "Inhaltstyp: Seite (Page)" + } + }, + "blocks_layout": { + "items": [ + "f3719d15-b7aa-491b-951b-afe82762bc74", + "3131582e-133c-49f1-8f8a-84178fa65bdf" + ] + }, + "styles": {} + }, + "c9a5a276-8e30-4cec-b5e2-d1c2c29d130c": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Vivamus suscipit tortor eget felis porttitor volutpat. Pellentesque in ipsum id orci porta dapibus. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.", + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Vivamus suscipit tortor eget felis porttitor volutpat. Pellentesque in ipsum id orci porta dapibus. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui." + } + ], + "type": "p" + } + ] + }, + "eb96fbff-47dd-498b-8bd3-2ec5097ce673": { + "@type": "title" + } + }, + "blocks_layout": { + "items": [ + "eb96fbff-47dd-498b-8bd3-2ec5097ce673", + "a117798d-06a3-4c57-92a9-672f1ce5dc90", + "16e0d40e-9da7-4523-9cb0-43cf2bfc5fc4", + "c9a5a276-8e30-4cec-b5e2-d1c2c29d130c", + "429c0a28-cf90-4d4d-ad8a-acc904bf3070", + "b249bf0e-2f21-4c54-bfac-d847a473bb0d", + "4974677f-f93a-41ba-9136-73c7b487754f" + ] + }, + "contributors": [], + "created": "2023-07-06T21:35:23+00:00", + "creators": [ + "admin" + ], + "description": "", + "effective": "2023-07-06T18:35:00", + "exclude_from_nav": false, + "expires": null, + "id": "highlight-and-grid", + "is_folderish": true, + "language": "en", + "layout": "document_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2024-03-09T09:16:38+00:00", + "parent": { + "@id": "/vertical-spacing", + "@type": "Document", + "UID": "c40a2be214b645338a7ef2e711e2f5c6", + "description": "", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Vertical Spacing", + "type_title": "Page" + }, + "preview_caption": null, + "preview_image": null, + "review_state": "published", + "rights": "", + "subjects": [], + "title": "Highlight and Grid", + "type_title": "Page", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2023-07-06T21:35:23+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2023-07-06T21:35:23+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/5.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/5.json new file mode 100644 index 0000000..8eeb683 --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/5.json @@ -0,0 +1,137 @@ +{ + "@id": "/block/form", + "@type": "Document", + "UID": "13de82575e16493fbc54514e548a9f3c", + "allow_discussion": false, + "blocks": { + "00e8d49b-5b99-4d2f-83b3-7d69bc80b893": { + "@type": "title" + }, + "3687103d-0766-4d5e-8aae-fc7e65c457a6": { + "@type": "form", + "default_from": "noreply@plone.org", + "lastChange": 1709909066340, + "remove_data_after_days": -1, + "send_email": true, + "show_cancel": false, + "store": true, + "subblocks": [ + { + "field_id": "1709833577467", + "field_type": "text", + "id": "1709833577467", + "label": "Name", + "required": true + }, + { + "field_id": "1709833592544", + "field_type": "from", + "id": "1709833592544", + "label": "Email", + "required": false, + "use_as_bcc": false, + "use_as_reply_to": false + }, + { + "field_id": "1709833604677", + "field_type": "textarea", + "id": "1709833604677", + "label": "Message", + "required": false + }, + { + "field_id": "1709833616406", + "field_type": "multiple_choice", + "id": "1709833616406", + "input_values": [ + "Red", + "Green", + "Blue" + ], + "label": "Select field", + "required": false + } + ], + "title": "A simple form" + }, + "eb25b89c-d64a-4566-8e6e-71fd0f371964": { + "@type": "slate", + "plaintext": "", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "" + } + ], + "type": "p" + } + ] + } + }, + "blocks_layout": { + "items": [ + "00e8d49b-5b99-4d2f-83b3-7d69bc80b893", + "3687103d-0766-4d5e-8aae-fc7e65c457a6", + "eb25b89c-d64a-4566-8e6e-71fd0f371964" + ] + }, + "contributors": [], + "created": "2024-03-07T17:47:56+00:00", + "creators": [ + "admin" + ], + "description": "A form block can be used to create forms", + "effective": "2024-03-08T12:40:00", + "exclude_from_nav": false, + "expires": null, + "id": "form", + "is_folderish": true, + "language": "en", + "layout": "document_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2024-03-08T14:44:49+00:00", + "parent": { + "@id": "/block", + "@type": "Document", + "UID": "425695d2b7cb47e69374d6f211f17e38", + "description": "", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Blocks", + "type_title": "Page" + }, + "preview_caption": null, + "preview_image": null, + "review_state": "published", + "rights": "", + "subjects": [], + "title": "Form", + "type_title": "Page", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2024-03-07T17:47:56+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2024-03-08T11:40:53+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/50.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/50.json new file mode 100644 index 0000000..a83b0d8 --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/50.json @@ -0,0 +1,359 @@ +{ + "@id": "/vertical-spacing/highlight-and-text", + "@type": "Document", + "UID": "6a82ae8d8a434e019b404f4387fe1a42", + "allow_discussion": false, + "blocks": { + "429c0a28-cf90-4d4d-ad8a-acc904bf3070": { + "@type": "highlight", + "allow_image_download": true, + "alt": "", + "blurhash": "1.3398:L89aT~e:0MMcRln3MwSiZ~EQs6x]", + "button": true, + "buttonLink": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "CreationDate": "2023-07-06T23:35:20+02:00", + "Creator": "admin", + "Date": "2023-07-06T18:35:00+02:00", + "Description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "EffectiveDate": "2023-07-06T18:35:00+02:00", + "ExpirationDate": "None", + "ModificationDate": "2023-09-22T16:25:49+02:00", + "Subject": [], + "Title": "Page", + "Type": "Page", + "UID": "7ab9c48ede33415fa2a66a99549c8f70", + "author_name": null, + "cmf_uid": null, + "commentators": [], + "created": "2023-07-06T21:35:20+00:00", + "description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "effective": "2023-07-06T16:35:00+00:00", + "end": null, + "exclude_from_nav": false, + "expires": "2499-12-30T22:00:00+00:00", + "getIcon": null, + "getId": "page", + "getObjSize": "676.8 KB", + "getPath": "/Plone/content-types/page", + "getRemoteUrl": null, + "getURL": "http://localhost:8080/Plone/content-types/page", + "hasPreviewImage": true, + "head_title": null, + "id": "page", + "image_field": "preview_image", + "in_response_to": null, + "is_folderish": true, + "last_comment_date": null, + "listCreators": [ + "admin" + ], + "location": null, + "mime_type": "text/plain", + "modified": "2023-09-22T14:25:49+00:00", + "nav_title": null, + "portal_type": "Document", + "review_state": "published", + "start": null, + "sync_uid": null, + "title": "Page", + "total_comments": 0, + "type_title": "Page" + } + ], + "buttonText": "Mehr Infos", + "credit": { + "data": "DLR (CC BY-NC-ND 3.0)" + }, + "description_color": "blue3", + "image_field": "image", + "plaintext": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt.", + "styles": { + "descriptionColor": "highlight-custom-color-3" + }, + "title": "Highlight-Block", + "url": "../../resolveuid/970ec24c76784c66a06d8c8d8b6522b2", + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt." + } + ], + "type": "p" + } + ] + }, + "4974677f-f93a-41ba-9136-73c7b487754f": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Vivamus suscipit tortor eget felis porttitor volutpat. Pellentesque in ipsum id orci porta dapibus. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.", + "styles": { + "backgroundColor": "grey" + }, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Vivamus suscipit tortor eget felis porttitor volutpat. Pellentesque in ipsum id orci porta dapibus. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui." + } + ], + "type": "p" + } + ] + }, + "94ef94a6-33af-47b4-a848-473d585b91dd": { + "@type": "heading", + "alignment": "left", + "heading": "Grey variant", + "tag": "h2" + }, + "a117798d-06a3-4c57-92a9-672f1ce5dc90": { + "@type": "highlight", + "allow_image_download": true, + "alt": "", + "blurhash": "1.3398:L89aT~e:0MMcRln3MwSiZ~EQs6x]", + "button": true, + "buttonLink": [ + { + "@id": "/de/das-dlr", + "@type": "Document", + "CreationDate": "2022-05-31T17:16:44+02:00", + "Creator": "admin", + "Date": "2022-05-31T17:16:45+02:00", + "Description": "Das DLR ist das Forschungszentrum der Bundesrepublik Deutschland f\u00fcr Luft- und Raumfahrt. Wir betreiben Forschung und Entwicklung in Luftfahrt, Raumfahrt, Energie und Verkehr, Sicherheit und Digitalisierung. Die Deutsche Raumfahrtagentur im DLR ist im Auftrag der Bundesregierung f\u00fcr die Planung und Umsetzung der deutschen Raumfahrtaktivit\u00e4ten zust\u00e4ndig. Zwei DLR Projekttr\u00e4ger betreuen F\u00f6rderprogramme und unterst\u00fctzen den Wissenstransfer.", + "EffectiveDate": "2022-05-31T17:16:45+02:00", + "ExpirationDate": "None", + "Language": "de", + "ModificationDate": "2022-05-31T17:20:31+02:00", + "Subject": [], + "Title": "Das DLR", + "TranslationGroup": "0feca0b2e07945ee8c61c60ad49005cc", + "Type": "Seite", + "UID": "0835c0b72abf4c7aaf509b3b65b88ab5", + "academic": null, + "administrational_units": [], + "author_name": null, + "award_date_month": null, + "award_date_year": null, + "award_type": null, + "building": null, + "cmf_uid": 3, + "commentators": [], + "created": "2022-05-31T15:16:44+00:00", + "description": "Das DLR ist das Forschungszentrum der Bundesrepublik Deutschland f\u00fcr Luft- und Raumfahrt. Wir betreiben Forschung und Entwicklung in Luftfahrt, Raumfahrt, Energie und Verkehr, Sicherheit und Digitalisierung. Die Deutsche Raumfahrtagentur im DLR ist im Auftrag der Bundesregierung f\u00fcr die Planung und Umsetzung der deutschen Raumfahrtaktivit\u00e4ten zust\u00e4ndig. Zwei DLR Projekttr\u00e4ger betreuen F\u00f6rderprogramme und unterst\u00fctzen den Wissenstransfer.", + "detailed_description": null, + "effective": "2022-05-31T15:16:45+00:00", + "email": null, + "end": null, + "event_type": null, + "exclude_from_nav": false, + "expires": "2499-12-30T22:00:00+00:00", + "external_funding_provider_1": null, + "external_funding_provider_1_link": null, + "external_funding_provider_2": null, + "external_funding_provider_2_link": null, + "external_funding_provider_3": null, + "external_funding_provider_3_link": null, + "firstname": null, + "getIcon": true, + "getId": "das-dlr", + "getObjSize": "0 KB", + "getPath": "/Plone/de/das-dlr", + "getRemoteUrl": null, + "getURL": "http://localhost:3000/de/das-dlr", + "hasPreviewImage": false, + "head_title": null, + "id": "das-dlr", + "image_field": "image", + "in_response_to": null, + "institute": [], + "institutes": [], + "is_folderish": true, + "is_geschaeftsbereich_or_stabstelle": null, + "is_young_research_group": null, + "job_offer_category": null, + "job_offer_fingerprint": null, + "job_offer_institute": null, + "job_offer_location": null, + "job_offer_target_group": null, + "last_comment_date": null, + "listCreators": [ + "admin" + ], + "location": null, + "member_fullnames": null, + "member_source": null, + "members": [], + "mime_type": "text/plain", + "modified": "2022-05-31T15:20:31+00:00", + "name": null, + "nav_title": null, + "phone": null, + "portal_type": "Document", + "positions": null, + "project_end_month": null, + "project_end_year": null, + "project_start_month": null, + "project_start_year": null, + "project_type": null, + "research_group": [], + "research_topics": [], + "review_state": "published", + "rights": "", + "room": null, + "show_navigation_portlet": false, + "sort_id": 1, + "start": null, + "sync_uid": null, + "title": "Das DLR", + "topic": [], + "total_comments": 0, + "website_link": null, + "year": "2022" + } + ], + "buttonText": "Mehr Infos", + "credit": { + "data": "DLR (CC BY-NC-ND 3.0)" + }, + "description_color": "blue3", + "image_field": "image", + "plaintext": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt.", + "styles": { + "descriptionColor": "highlight-custom-color-2" + }, + "title": "Highlight-Block", + "url": "../../resolveuid/eec82559bf3242a6be4d43bc2096f399", + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt." + } + ], + "type": "p" + } + ] + }, + "c006d4d9-ccbc-43f2-938c-af4d091defed": { + "@type": "slate", + "plaintext": "", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "" + } + ], + "type": "p" + } + ] + }, + "c9a5a276-8e30-4cec-b5e2-d1c2c29d130c": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Vivamus suscipit tortor eget felis porttitor volutpat. Pellentesque in ipsum id orci porta dapibus. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.", + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Vivamus suscipit tortor eget felis porttitor volutpat. Pellentesque in ipsum id orci porta dapibus. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui." + } + ], + "type": "p" + } + ] + }, + "d73dd331-8c5b-4719-85b5-db5039fb938e": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Vivamus suscipit tortor eget felis porttitor volutpat. Pellentesque in ipsum id orci porta dapibus. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.", + "styles": { + "backgroundColor": "grey" + }, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Vivamus suscipit tortor eget felis porttitor volutpat. Pellentesque in ipsum id orci porta dapibus. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui." + } + ], + "type": "p" + } + ] + }, + "eb96fbff-47dd-498b-8bd3-2ec5097ce673": { + "@type": "title" + } + }, + "blocks_layout": { + "items": [ + "eb96fbff-47dd-498b-8bd3-2ec5097ce673", + "a117798d-06a3-4c57-92a9-672f1ce5dc90", + "c9a5a276-8e30-4cec-b5e2-d1c2c29d130c", + "94ef94a6-33af-47b4-a848-473d585b91dd", + "c006d4d9-ccbc-43f2-938c-af4d091defed", + "429c0a28-cf90-4d4d-ad8a-acc904bf3070", + "4974677f-f93a-41ba-9136-73c7b487754f", + "d73dd331-8c5b-4719-85b5-db5039fb938e" + ] + }, + "contributors": [], + "created": "2023-07-06T21:35:23+00:00", + "creators": [ + "admin" + ], + "description": "", + "effective": "2023-07-06T18:35:00", + "exclude_from_nav": false, + "expires": null, + "id": "highlight-and-text", + "is_folderish": true, + "language": "en", + "layout": "document_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2024-03-09T09:17:17+00:00", + "parent": { + "@id": "/vertical-spacing", + "@type": "Document", + "UID": "c40a2be214b645338a7ef2e711e2f5c6", + "description": "", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Vertical Spacing", + "type_title": "Page" + }, + "preview_caption": null, + "preview_image": null, + "review_state": "published", + "rights": "", + "subjects": [], + "title": "Highlight and Text", + "type_title": "Page", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2023-07-06T21:35:23+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2023-07-06T21:35:23+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/51.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/51.json new file mode 100644 index 0000000..bac3ff2 --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/51.json @@ -0,0 +1,218 @@ +{ + "@id": "/vertical-spacing/listing-and-listing", + "@type": "Document", + "UID": "f51777793dab4a61982e35dfa71d0575", + "allow_discussion": false, + "blocks": { + "34290989-9769-44b6-ad39-4505c20a7ee0": { + "@type": "listing", + "block": "a4359eb0-6416-477d-84a8-d06b3a9a3e89", + "headlineTag": "h2", + "query": [], + "querystring": { + "limit": "3", + "query": [ + { + "i": "portal_type", + "o": "plone.app.querystring.operation.selection.any", + "v": [ + "Document" + ] + } + ], + "sort_on": "getObjPositionInParent", + "sort_order": "descending", + "sort_order_boolean": true + }, + "styles": { + "backgroundColor": "grey" + }, + "variation": "summary" + }, + "601fc136-27f4-44b3-851b-ba5c0c76c2d7": { + "@type": "listing", + "block": "cf98535a-82bf-4553-8588-6fc679a7c1c0", + "headlineTag": "h2", + "query": [], + "querystring": { + "limit": "3", + "query": [ + { + "i": "portal_type", + "o": "plone.app.querystring.operation.selection.any", + "v": [ + "Document" + ] + } + ], + "sort_order": "ascending" + }, + "styles": { + "backgroundColor": "grey" + }, + "variation": "default" + }, + "91762b77-6b5f-41f8-a230-b2d83de72e6e": { + "@type": "listing", + "block": "cc17562e-083b-4f11-af21-b0dd2d2b61e6", + "headline": "Listing: Nachrichten", + "headlineTag": "h2", + "query": [], + "querystring": { + "limit": "3", + "query": [ + { + "i": "portal_type", + "o": "plone.app.querystring.operation.selection.any", + "v": [ + "News Item" + ] + } + ], + "sort_order": "ascending" + }, + "styles": { + "backgroundColor": "grey" + }, + "variation": "newsListing" + }, + "93acf721-12a7-4902-8942-260201401830": { + "@type": "listing", + "block": "cf98535a-82bf-4553-8588-6fc679a7c1c0", + "headline": "Listing: Standard", + "headlineTag": "h2", + "query": [], + "querystring": { + "limit": "3", + "query": [ + { + "i": "path", + "o": "plone.app.querystring.operation.string.absolutePath", + "v": "/content-types/" + } + ], + "sort_order": "ascending" + }, + "styles": { + "backgroundColor": "grey" + }, + "variation": "default" + }, + "9ab289c8-ddfb-4c3a-b622-12b153f11406": { + "@type": "listing", + "block": "cc17562e-083b-4f11-af21-b0dd2d2b61e6", + "headlineTag": "h2", + "query": [], + "querystring": { + "limit": "3", + "query": [ + { + "i": "portal_type", + "o": "plone.app.querystring.operation.selection.any", + "v": [ + "News Item" + ] + } + ], + "sort_order": "ascending" + }, + "styles": { + "backgroundColor": "grey" + }, + "variation": "newsListing" + }, + "a8adf4ff-d857-4caa-82a2-1d91321a22d0": { + "@type": "listing", + "block": "a4359eb0-6416-477d-84a8-d06b3a9a3e89", + "headline": "Listing: Zusammenfassung", + "headlineTag": "h2", + "query": [], + "querystring": { + "limit": "3", + "query": [ + { + "i": "path", + "o": "plone.app.querystring.operation.string.absolutePath", + "v": "" + } + ], + "sort_order": "ascending" + }, + "styles": { + "backgroundColor": "grey" + }, + "variation": "summary" + }, + "dca03386-bb08-4981-9389-90fc4bcee334": { + "@type": "title" + } + }, + "blocks_layout": { + "items": [ + "dca03386-bb08-4981-9389-90fc4bcee334", + "601fc136-27f4-44b3-851b-ba5c0c76c2d7", + "34290989-9769-44b6-ad39-4505c20a7ee0", + "9ab289c8-ddfb-4c3a-b622-12b153f11406", + "93acf721-12a7-4902-8942-260201401830", + "a8adf4ff-d857-4caa-82a2-1d91321a22d0", + "91762b77-6b5f-41f8-a230-b2d83de72e6e" + ] + }, + "contributors": [], + "created": "2023-07-06T21:35:23+00:00", + "creators": [ + "admin" + ], + "description": "", + "effective": "2023-07-06T18:35:00", + "exclude_from_nav": false, + "expires": null, + "id": "listing-and-listing", + "is_folderish": true, + "language": "en", + "layout": "document_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2023-09-30T06:58:05+00:00", + "parent": { + "@id": "/vertical-spacing", + "@type": "Document", + "UID": "c40a2be214b645338a7ef2e711e2f5c6", + "description": "", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Vertical Spacing", + "type_title": "Page" + }, + "preview_caption": null, + "preview_image": null, + "review_state": "published", + "rights": "", + "subjects": [], + "title": "Listing and Listing", + "type_title": "Page", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2023-07-06T21:35:23+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2023-07-06T21:35:23+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/52.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/52.json new file mode 100644 index 0000000..122bdc3 --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/52.json @@ -0,0 +1,312 @@ +{ + "@id": "/vertical-spacing/listing-and-text", + "@type": "Document", + "UID": "e017bd4a0b3845aab26f6d855cc4ef14", + "allow_discussion": false, + "blocks": { + "02e2a3ef-7d51-43d4-a122-5171bd88617b": { + "@type": "slate", + "plaintext": "Cras ultricies ligula sed magna dictum porta. Cras ultricies ligula sed magna dictum porta. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Donec rutrum congue leo eget malesuada. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus.", + "value": [ + { + "children": [ + { + "text": "Cras ultricies ligula sed magna dictum porta. Cras ultricies ligula sed magna dictum porta. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Donec rutrum congue leo eget malesuada. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus." + } + ], + "type": "p" + } + ] + }, + "095f04c7-99fd-4c0b-8628-3dc78e0d5971": { + "@type": "slate", + "plaintext": "Cras ultricies ligula sed magna dictum porta. Cras ultricies ligula sed magna dictum porta. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Donec rutrum congue leo eget malesuada. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus.", + "value": [ + { + "children": [ + { + "text": "Cras ultricies ligula sed magna dictum porta. Cras ultricies ligula sed magna dictum porta. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Donec rutrum congue leo eget malesuada. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus." + } + ], + "type": "p" + } + ] + }, + "0f4ec27c-90e7-4c35-846f-3296d1049786": { + "@type": "slate", + "plaintext": "Cras ultricies ligula sed magna dictum porta. Cras ultricies ligula sed magna dictum porta. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Donec rutrum congue leo eget malesuada. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus.", + "value": [ + { + "children": [ + { + "text": "Cras ultricies ligula sed magna dictum porta. Cras ultricies ligula sed magna dictum porta. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Donec rutrum congue leo eget malesuada. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus." + } + ], + "type": "p" + } + ] + }, + "34290989-9769-44b6-ad39-4505c20a7ee0": { + "@type": "listing", + "block": "a4359eb0-6416-477d-84a8-d06b3a9a3e89", + "headlineTag": "h2", + "query": [], + "querystring": { + "limit": "3", + "query": [ + { + "i": "portal_type", + "o": "plone.app.querystring.operation.selection.any", + "v": [ + "Document" + ] + } + ], + "sort_order": "ascending" + }, + "styles": { + "backgroundColor": "grey" + }, + "variation": "summary" + }, + "4a5e5f8e-3d7a-4860-8d0f-f7043df08e5d": { + "@type": "slate", + "plaintext": "Cras ultricies ligula sed magna dictum porta. Cras ultricies ligula sed magna dictum porta. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Donec rutrum congue leo eget malesuada. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus.", + "styles": { + "backgroundColor": "grey" + }, + "value": [ + { + "children": [ + { + "text": "Cras ultricies ligula sed magna dictum porta. Cras ultricies ligula sed magna dictum porta. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Donec rutrum congue leo eget malesuada. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus." + } + ], + "type": "p" + } + ] + }, + "601fc136-27f4-44b3-851b-ba5c0c76c2d7": { + "@type": "listing", + "block": "cf98535a-82bf-4553-8588-6fc679a7c1c0", + "headlineTag": "h2", + "query": [], + "querystring": { + "limit": "3", + "query": [ + { + "i": "path", + "o": "plone.app.querystring.operation.string.absolutePath", + "v": "" + } + ], + "sort_order": "ascending" + }, + "styles": { + "backgroundColor": "grey" + }, + "variation": "default" + }, + "91762b77-6b5f-41f8-a230-b2d83de72e6e": { + "@type": "listing", + "block": "cc17562e-083b-4f11-af21-b0dd2d2b61e6", + "headline": "Listing: Nachrichten", + "headlineTag": "h2", + "query": [], + "querystring": { + "limit": "3", + "query": [ + { + "i": "portal_type", + "o": "plone.app.querystring.operation.selection.any", + "v": [ + "News Item" + ] + } + ], + "sort_order": "ascending" + }, + "styles": { + "backgroundColor": "grey" + }, + "variation": "newsListing" + }, + "93acf721-12a7-4902-8942-260201401830": { + "@type": "listing", + "block": "cf98535a-82bf-4553-8588-6fc679a7c1c0", + "headline": "Listing: Standard", + "headlineTag": "h2", + "query": [], + "querystring": { + "limit": "3", + "query": [ + { + "i": "path", + "o": "plone.app.querystring.operation.string.absolutePath", + "v": "/block" + } + ], + "sort_order": "ascending" + }, + "styles": { + "backgroundColor": "grey" + }, + "variation": "default" + }, + "9ab289c8-ddfb-4c3a-b622-12b153f11406": { + "@type": "listing", + "block": "cc17562e-083b-4f11-af21-b0dd2d2b61e6", + "headlineTag": "h2", + "query": [], + "querystring": { + "limit": "3", + "query": [ + { + "i": "portal_type", + "o": "plone.app.querystring.operation.selection.any", + "v": [ + "News Item" + ] + } + ], + "sort_order": "ascending" + }, + "styles": { + "backgroundColor": "grey" + }, + "variation": "newsListing" + }, + "a8adf4ff-d857-4caa-82a2-1d91321a22d0": { + "@type": "listing", + "block": "a4359eb0-6416-477d-84a8-d06b3a9a3e89", + "headline": "Listing: Zusammenfassung", + "headlineTag": "h2", + "query": [], + "querystring": { + "limit": "3", + "query": [ + { + "i": "portal_type", + "o": "plone.app.querystring.operation.selection.any", + "v": [ + "Document" + ] + } + ], + "sort_order": "ascending" + }, + "styles": { + "backgroundColor": "grey" + }, + "variation": "summary" + }, + "dca03386-bb08-4981-9389-90fc4bcee334": { + "@type": "title" + }, + "ed7ab4a5-cc35-4b6e-8081-eda78ae646df": { + "@type": "slate", + "plaintext": "Cras ultricies ligula sed magna dictum porta. Cras ultricies ligula sed magna dictum porta. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Donec rutrum congue leo eget malesuada. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus.", + "styles": { + "backgroundColor": "grey" + }, + "value": [ + { + "children": [ + { + "text": "Cras ultricies ligula sed magna dictum porta. Cras ultricies ligula sed magna dictum porta. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Donec rutrum congue leo eget malesuada. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus." + } + ], + "type": "p" + } + ] + }, + "f24d16e8-9ce6-4d91-aab5-ee0462281f2b": { + "@type": "slate", + "plaintext": "Cras ultricies ligula sed magna dictum porta. Cras ultricies ligula sed magna dictum porta. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Donec rutrum congue leo eget malesuada. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus.", + "value": [ + { + "children": [ + { + "text": "Cras ultricies ligula sed magna dictum porta. Cras ultricies ligula sed magna dictum porta. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Donec rutrum congue leo eget malesuada. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus." + } + ], + "type": "p" + } + ] + } + }, + "blocks_layout": { + "items": [ + "dca03386-bb08-4981-9389-90fc4bcee334", + "f24d16e8-9ce6-4d91-aab5-ee0462281f2b", + "601fc136-27f4-44b3-851b-ba5c0c76c2d7", + "095f04c7-99fd-4c0b-8628-3dc78e0d5971", + "34290989-9769-44b6-ad39-4505c20a7ee0", + "ed7ab4a5-cc35-4b6e-8081-eda78ae646df", + "9ab289c8-ddfb-4c3a-b622-12b153f11406", + "02e2a3ef-7d51-43d4-a122-5171bd88617b", + "93acf721-12a7-4902-8942-260201401830", + "0f4ec27c-90e7-4c35-846f-3296d1049786", + "a8adf4ff-d857-4caa-82a2-1d91321a22d0", + "4a5e5f8e-3d7a-4860-8d0f-f7043df08e5d", + "91762b77-6b5f-41f8-a230-b2d83de72e6e" + ] + }, + "contributors": [], + "created": "2023-07-06T21:35:23+00:00", + "creators": [ + "admin" + ], + "description": "", + "effective": "2023-07-06T18:35:00", + "exclude_from_nav": false, + "expires": null, + "id": "listing-and-text", + "is_folderish": true, + "language": "en", + "layout": "document_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2023-09-30T06:59:18+00:00", + "parent": { + "@id": "/vertical-spacing", + "@type": "Document", + "UID": "c40a2be214b645338a7ef2e711e2f5c6", + "description": "", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Vertical Spacing", + "type_title": "Page" + }, + "preview_caption": null, + "preview_image": null, + "review_state": "published", + "rights": "", + "subjects": [], + "title": "Listing and Text", + "type_title": "Page", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2023-07-06T21:35:23+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2023-07-06T21:35:23+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/53.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/53.json new file mode 100644 index 0000000..150db6d --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/53.json @@ -0,0 +1,254 @@ +{ + "@id": "/vertical-spacing/teasers-and-text", + "@type": "Document", + "UID": "1efc7b73b28e4edeaf40040709299d69", + "allow_discussion": false, + "blocks": { + "427934d4-5170-40af-b849-44b55c44f697": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "Title": "Page", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Page" + } + ], + "styles": { + "align": "left", + "backgroundColor": "grey" + }, + "title": "Inhaltstyp: Seite (Page)" + }, + "5803406e-bb08-42b1-994d-96dfdb068555": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "Title": "Inhaltstyp: Seite (Page)", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Inhaltstyp: Seite (Page)" + } + ], + "styles": { + "align": "right", + "backgroundColor": "grey" + }, + "title": "Inhaltstyp: Seite (Page)" + }, + "91161714-fcea-4bdd-b809-9edd4cc1da2b": { + "@type": "gridBlock", + "blocks": { + "3131582e-133c-49f1-8f8a-84178fa65bdf": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "head_title": null, + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "Title": "Inhaltstyp: Seite (Page)", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Inhaltstyp: Seite (Page)" + } + ], + "styles": { + "align": "left" + }, + "title": "Inhaltstyp: Seite (Page)" + }, + "f3719d15-b7aa-491b-951b-afe82762bc74": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "head_title": null, + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "Title": "Inhaltstyp: Seite (Page)", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Inhaltstyp: Seite (Page)" + } + ], + "styles": { + "align": "left" + }, + "title": "Inhaltstyp: Seite (Page)" + } + }, + "blocks_layout": { + "items": [ + "f3719d15-b7aa-491b-951b-afe82762bc74", + "3131582e-133c-49f1-8f8a-84178fa65bdf" + ] + }, + "headline": "This one has heading", + "styles": {} + }, + "af8bd9d7-c793-4619-941a-22885c1dcb0f": { + "@type": "title" + }, + "b986af79-52ce-4787-a632-d08fc3b8f39f": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus suscipit tortor eget felis porttitor volutpat.", + "styles": {}, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus suscipit tortor eget felis porttitor volutpat." + } + ], + "type": "p" + } + ] + }, + "c444e3d8-260d-4953-a821-59dcf419622c": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "Title": "Inhaltstyp: Seite (Page)", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Inhaltstyp: Seite (Page)" + } + ], + "styles": { + "align": "right", + "backgroundColor": "grey" + }, + "title": "Inhaltstyp: Seite (Page)" + }, + "d5b58f85-a6e5-43bd-a8e8-e4015f2835c1": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus suscipit tortor eget felis porttitor volutpat.", + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus suscipit tortor eget felis porttitor volutpat." + } + ], + "type": "p" + } + ] + }, + "f7f6732e-091b-4a80-87d7-55e10dd43696": { + "@type": "teaser", + "description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "href": [ + { + "@id": "../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "Der Inhaltstyp Seite kann verwendet werden Inhalte auf einer Einzelseite der Webseite darzustellen. Seiten k\u00f6nnen mit Hilfe von Text, Bildern und Bl\u00f6cken strukturiert werden.", + "Title": "Inhaltstyp: Seite (Page)", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Inhaltstyp: Seite (Page)" + } + ], + "styles": { + "align": "left", + "backgroundColor": "grey" + }, + "title": "Inhaltstyp: Seite (Page)" + } + }, + "blocks_layout": { + "items": [ + "af8bd9d7-c793-4619-941a-22885c1dcb0f", + "427934d4-5170-40af-b849-44b55c44f697", + "5803406e-bb08-42b1-994d-96dfdb068555", + "91161714-fcea-4bdd-b809-9edd4cc1da2b", + "d5b58f85-a6e5-43bd-a8e8-e4015f2835c1", + "f7f6732e-091b-4a80-87d7-55e10dd43696", + "c444e3d8-260d-4953-a821-59dcf419622c", + "b986af79-52ce-4787-a632-d08fc3b8f39f" + ] + }, + "contributors": [], + "created": "2023-07-06T21:35:23+00:00", + "creators": [ + "admin" + ], + "description": "", + "effective": "2023-07-06T18:35:00", + "exclude_from_nav": false, + "expires": null, + "id": "teasers-and-text", + "is_folderish": true, + "language": "en", + "layout": "document_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2024-03-09T09:51:28+00:00", + "parent": { + "@id": "/vertical-spacing", + "@type": "Document", + "UID": "c40a2be214b645338a7ef2e711e2f5c6", + "description": "", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Vertical Spacing", + "type_title": "Page" + }, + "preview_caption": null, + "preview_image": null, + "review_state": "published", + "rights": "", + "subjects": [], + "title": "Teasers and Text", + "type_title": "Page", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2023-07-06T21:35:23+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2023-07-06T21:35:23+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/54.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/54.json new file mode 100644 index 0000000..cf5b69d --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/54.json @@ -0,0 +1,172 @@ +{ + "@id": "/vertical-spacing/text", + "@type": "Document", + "UID": "7950cae06c994276930f6d13151308c5", + "allow_discussion": false, + "blocks": { + "0f997d9d-681c-426f-a372-2bbf8f8d7a73": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Vivamus suscipit tortor eget felis porttitor volutpat. Pellentesque in ipsum id orci porta dapibus. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.", + "styles": { + "backgroundColor": "grey" + }, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Vivamus suscipit tortor eget felis porttitor volutpat. Pellentesque in ipsum id orci porta dapibus. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui." + } + ], + "type": "p" + } + ] + }, + "507601af-b12e-4abf-98b6-756caa18c6df": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Vivamus suscipit tortor eget felis porttitor volutpat. Pellentesque in ipsum id orci porta dapibus. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.", + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Vivamus suscipit tortor eget felis porttitor volutpat. Pellentesque in ipsum id orci porta dapibus. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui." + } + ], + "type": "p" + } + ] + }, + "5edda2d6-8e2d-418a-b7ee-87a43e63c4d9": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Vivamus suscipit tortor eget felis porttitor volutpat. Pellentesque in ipsum id orci porta dapibus. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.", + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Vivamus suscipit tortor eget felis porttitor volutpat. Pellentesque in ipsum id orci porta dapibus. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui." + } + ], + "type": "p" + } + ] + }, + "bba5a551-f2f7-47db-a121-2493a03776b8": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Vivamus suscipit tortor eget felis porttitor volutpat. Pellentesque in ipsum id orci porta dapibus. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.", + "styles": { + "backgroundColor": "grey" + }, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Vivamus suscipit tortor eget felis porttitor volutpat. Pellentesque in ipsum id orci porta dapibus. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui." + } + ], + "type": "p" + } + ] + }, + "ce2ebae1-cb51-40b4-b6b2-92d8441e4527": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Vivamus suscipit tortor eget felis porttitor volutpat. Pellentesque in ipsum id orci porta dapibus. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.", + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Vivamus suscipit tortor eget felis porttitor volutpat. Pellentesque in ipsum id orci porta dapibus. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui." + } + ], + "type": "p" + } + ] + }, + "d8d7e7fe-9dce-44dc-a276-bb44462981a8": { + "@type": "slate", + "plaintext": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Vivamus suscipit tortor eget felis porttitor volutpat. Pellentesque in ipsum id orci porta dapibus. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.", + "styles": { + "backgroundColor": "grey" + }, + "value": [ + { + "children": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Vivamus suscipit tortor eget felis porttitor volutpat. Pellentesque in ipsum id orci porta dapibus. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui." + } + ], + "type": "p" + } + ] + }, + "da13aafe-99f0-4118-b2be-8b3e56afb6b9": { + "@type": "title" + } + }, + "blocks_layout": { + "items": [ + "da13aafe-99f0-4118-b2be-8b3e56afb6b9", + "bba5a551-f2f7-47db-a121-2493a03776b8", + "ce2ebae1-cb51-40b4-b6b2-92d8441e4527", + "d8d7e7fe-9dce-44dc-a276-bb44462981a8", + "0f997d9d-681c-426f-a372-2bbf8f8d7a73", + "5edda2d6-8e2d-418a-b7ee-87a43e63c4d9", + "507601af-b12e-4abf-98b6-756caa18c6df" + ] + }, + "contributors": [], + "created": "2023-07-06T21:35:23+00:00", + "creators": [ + "admin" + ], + "description": "", + "effective": "2023-07-06T18:35:00", + "exclude_from_nav": false, + "expires": null, + "id": "text", + "is_folderish": true, + "language": "en", + "layout": "document_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2023-09-22T14:07:46+00:00", + "parent": { + "@id": "/vertical-spacing", + "@type": "Document", + "UID": "c40a2be214b645338a7ef2e711e2f5c6", + "description": "", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Vertical Spacing", + "type_title": "Page" + }, + "preview_caption": null, + "preview_image": null, + "review_state": "published", + "rights": "", + "subjects": [], + "title": "Text", + "type_title": "Page", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2023-07-06T21:35:23+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2023-07-06T21:35:23+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/6.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/6.json new file mode 100644 index 0000000..d5f5aa7 --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/6.json @@ -0,0 +1,103 @@ +{ + "@id": "/block/grid-block", + "@type": "Document", + "UID": "99c70917b6894af08dd306fdbc0eff6a", + "allow_discussion": false, + "blocks": { + "616b625c-b79f-4881-8536-b67a9e401a7d": { + "@type": "listing", + "block": "616b625c-b79f-4881-8536-b67a9e401a7d", + "headlineTag": "h2", + "query": [], + "variation": "default" + }, + "7624cf59-05d0-4055-8f55-5fd6597d84b0": { + "@type": "slate", + "plaintext": "", + "value": [ + { + "children": [ + { + "text": "" + } + ], + "type": "p" + } + ] + }, + "d3f1c443-583f-4e8e-a682-3bf25752a300": { + "@type": "title" + } + }, + "blocks_layout": { + "items": [ + "d3f1c443-583f-4e8e-a682-3bf25752a300", + "616b625c-b79f-4881-8536-b67a9e401a7d", + "7624cf59-05d0-4055-8f55-5fd6597d84b0" + ] + }, + "contributors": [], + "created": "2023-07-06T21:35:07+00:00", + "creators": [ + "admin" + ], + "description": "\nThe Grid block allows adding multi-column blocks. A grid block can contain between one and four columns of different blocks. Teasers and images can be added in a grid block.", + "effective": "2023-07-06T18:35:00", + "exclude_from_nav": false, + "expires": null, + "id": "grid-block", + "is_folderish": true, + "language": "en", + "layout": "document_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2024-03-09T09:14:27+00:00", + "parent": { + "@id": "/block", + "@type": "Document", + "UID": "425695d2b7cb47e69374d6f211f17e38", + "description": "", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Blocks", + "type_title": "Page" + }, + "preview_caption": null, + "preview_image": { + "blob_path": "blobs/99c70917b6894af08dd306fdbc0eff6a-preview_image/black-starry-night.jpg", + "content-type": "image/jpeg", + "filename": "black-starry-night.jpg", + "height": 1708, + "size": 693013, + "width": 2400 + }, + "review_state": "published", + "rights": "", + "subjects": [], + "title": "Grid", + "type_title": "Page", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2023-07-06T21:35:07+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2023-07-06T21:35:08+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/7.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/7.json new file mode 100644 index 0000000..90204b3 --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/7.json @@ -0,0 +1,391 @@ +{ + "@id": "/block/grid-block/image", + "@type": "Document", + "UID": "28cc586c504d436aa26fd2aa12f16f84", + "allow_discussion": false, + "blocks": { + "14b875e3-8bda-4610-98dc-ebbd03b8c929": { + "@type": "gridBlock", + "blocks": { + "34340073-e534-42ad-9cfb-8eab299228a9": { + "@type": "image", + "align": "center", + "credit": {}, + "description": " The Image content type can be used to upload an image in various formats (JPG, GIF, PNG, SVG). The uploaded image should always have a high resolution so that it can be used flexibly, for example as a banner image. Plone automatically delivers the images in the best scaling, so there is no need to scale images down manually.", + "image_field": "image", + "size": "l", + "title": "Image", + "url": "/content-types/image" + }, + "b1015ec4-9ddf-4e59-b6bf-214fc12c3a3d": { + "@type": "image", + "align": "center", + "credit": {}, + "description": " The Image content type can be used to upload an image in various formats (JPG, GIF, PNG, SVG). The uploaded image should always have a high resolution so that it can be used flexibly, for example as a banner image. Plone automatically delivers the images in the best scaling, so there is no need to scale images down manually.", + "image_field": "image", + "size": "l", + "title": "Image", + "url": "/content-types/image" + }, + "e800de8b-25f2-4a40-a3c6-189bec399a45": { + "@type": "image", + "align": "center", + "credit": {}, + "description": " The Image content type can be used to upload an image in various formats (JPG, GIF, PNG, SVG). The uploaded image should always have a high resolution so that it can be used flexibly, for example as a banner image. Plone automatically delivers the images in the best scaling, so there is no need to scale images down manually.", + "image_field": "image", + "size": "l", + "title": "Image", + "url": "/content-types/image" + } + }, + "blocks_layout": { + "items": [ + "b1015ec4-9ddf-4e59-b6bf-214fc12c3a3d", + "34340073-e534-42ad-9cfb-8eab299228a9", + "e800de8b-25f2-4a40-a3c6-189bec399a45" + ] + }, + "styles": { + "backgroundColor": "grey" + } + }, + "527d1573-85c1-47c7-928a-8dea32153e83": { + "@type": "gridBlock", + "blocks": { + "5e227a15-09e6-49f7-8679-e0b588059e1f": { + "@type": "image", + "align": "center", + "credit": {}, + "description": " The Image content type can be used to upload an image in various formats (JPG, GIF, PNG, SVG). The uploaded image should always have a high resolution so that it can be used flexibly, for example as a banner image. Plone automatically delivers the images in the best scaling, so there is no need to scale images down manually.", + "image_field": "image", + "size": "l", + "title": "Image - Light", + "url": "/content-types/image-light" + }, + "abd3504f-b4dd-48a9-97e2-923f2e63a957": { + "@type": "image", + "align": "center", + "credit": {}, + "description": " The Image content type can be used to upload an image in various formats (JPG, GIF, PNG, SVG). The uploaded image should always have a high resolution so that it can be used flexibly, for example as a banner image. Plone automatically delivers the images in the best scaling, so there is no need to scale images down manually.", + "image_field": "image", + "size": "l", + "title": "Image", + "url": "/content-types/image" + } + }, + "blocks_layout": { + "items": [ + "abd3504f-b4dd-48a9-97e2-923f2e63a957", + "5e227a15-09e6-49f7-8679-e0b588059e1f" + ] + }, + "styles": { + "backgroundColor": "grey" + } + }, + "83675906-07fc-468d-b0f3-71536fcb81eb": { + "@type": "gridBlock", + "blocks": { + "10dcdda6-cbbc-4de7-9542-fb9ca7df4638": { + "@type": "image", + "align": "center", + "credit": {}, + "description": " The Image content type can be used to upload an image in various formats (JPG, GIF, PNG, SVG). The uploaded image should always have a high resolution so that it can be used flexibly, for example as a banner image. Plone automatically delivers the images in the best scaling, so there is no need to scale images down manually.", + "image_field": "image", + "size": "l", + "title": "Image - Light", + "url": "/content-types/image-light" + }, + "df0eac4f-de62-444e-9ee0-9a30cf53bce3": { + "@type": "image", + "align": "center", + "credit": {}, + "description": " The Image content type can be used to upload an image in various formats (JPG, GIF, PNG, SVG). The uploaded image should always have a high resolution so that it can be used flexibly, for example as a banner image. Plone automatically delivers the images in the best scaling, so there is no need to scale images down manually.", + "image_field": "image", + "size": "l", + "title": "Image", + "url": "/content-types/image" + } + }, + "blocks_layout": { + "items": [ + "df0eac4f-de62-444e-9ee0-9a30cf53bce3", + "10dcdda6-cbbc-4de7-9542-fb9ca7df4638" + ] + }, + "styles": {} + }, + "9c34ee64-05bd-470f-ba3c-de604ec47591": { + "@type": "gridBlock", + "blocks": { + "fbb92003-0e22-4937-92af-3a8f3d061f60": { + "@type": "image", + "align": "center", + "credit": {}, + "description": " The Image content type can be used to upload an image in various formats (JPG, GIF, PNG, SVG). The uploaded image should always have a high resolution so that it can be used flexibly, for example as a banner image. Plone automatically delivers the images in the best scaling, so there is no need to scale images down manually.", + "image_field": "image", + "size": "l", + "title": "Image", + "url": "/content-types/image" + } + }, + "blocks_layout": { + "items": [ + "fbb92003-0e22-4937-92af-3a8f3d061f60" + ] + }, + "headline": "Block Title", + "styles": { + "backgroundColor": "grey" + } + }, + "a1c1ca3e-6643-4e39-abda-3bf7846daeef": { + "@type": "title" + }, + "b769baa0-8834-4434-b1d6-4b612aa6f714": { + "@type": "gridBlock", + "blocks": { + "a7d1d9b8-1caa-41cd-825e-15d4564a57f6": { + "@type": "image", + "align": "center", + "credit": {}, + "description": " The Image content type can be used to upload an image in various formats (JPG, GIF, PNG, SVG). The uploaded image should always have a high resolution so that it can be used flexibly, for example as a banner image. Plone automatically delivers the images in the best scaling, so there is no need to scale images down manually.", + "image_field": "image", + "size": "l", + "title": "Image - Light", + "url": "/content-types/image-light" + }, + "ab3542da-d0d1-450e-abf3-a5f9e6f3eb97": { + "@type": "image", + "align": "center", + "credit": {}, + "description": " The Image content type can be used to upload an image in various formats (JPG, GIF, PNG, SVG). The uploaded image should always have a high resolution so that it can be used flexibly, for example as a banner image. Plone automatically delivers the images in the best scaling, so there is no need to scale images down manually.", + "image_field": "image", + "size": "l", + "title": "Image", + "url": "/content-types/image" + }, + "d8ed659a-020b-4688-9d72-42c518677d4a": { + "@type": "image", + "align": "center", + "credit": {}, + "description": " The Image content type can be used to upload an image in various formats (JPG, GIF, PNG, SVG). The uploaded image should always have a high resolution so that it can be used flexibly, for example as a banner image. Plone automatically delivers the images in the best scaling, so there is no need to scale images down manually.", + "image_field": "image", + "size": "l", + "title": "Image - Light", + "url": "/content-types/image-light" + }, + "f4117857-1464-41c6-8e74-70f82f393891": { + "@type": "image", + "align": "center", + "credit": {}, + "description": " The Image content type can be used to upload an image in various formats (JPG, GIF, PNG, SVG). The uploaded image should always have a high resolution so that it can be used flexibly, for example as a banner image. Plone automatically delivers the images in the best scaling, so there is no need to scale images down manually.", + "image_field": "image", + "size": "l", + "title": "Image", + "url": "/content-types/image" + } + }, + "blocks_layout": { + "items": [ + "d8ed659a-020b-4688-9d72-42c518677d4a", + "f4117857-1464-41c6-8e74-70f82f393891", + "ab3542da-d0d1-450e-abf3-a5f9e6f3eb97", + "a7d1d9b8-1caa-41cd-825e-15d4564a57f6" + ] + }, + "styles": { + "backgroundColor": "grey" + } + }, + "c76741bb-803f-4680-8bee-cb4bdaedf284": { + "@type": "gridBlock", + "blocks": { + "b4ca1a34-cf52-45c7-963a-6e0b09d46e49": { + "@type": "image", + "align": "center", + "credit": {}, + "description": " The Image content type can be used to upload an image in various formats (JPG, GIF, PNG, SVG). The uploaded image should always have a high resolution so that it can be used flexibly, for example as a banner image. Plone automatically delivers the images in the best scaling, so there is no need to scale images down manually.", + "image_field": "image", + "size": "l", + "title": "Image", + "url": "/content-types/image" + }, + "eaa34549-1998-45a4-957e-2ea5d7cf41c4": { + "@type": "image", + "align": "center", + "credit": {}, + "description": " The Image content type can be used to upload an image in various formats (JPG, GIF, PNG, SVG). The uploaded image should always have a high resolution so that it can be used flexibly, for example as a banner image. Plone automatically delivers the images in the best scaling, so there is no need to scale images down manually.", + "image_field": "image", + "size": "l", + "title": "Image - Light", + "url": "/content-types/image-light" + }, + "f6af399c-afa2-4f21-8cd8-0c7fd1178d89": { + "@type": "image", + "align": "center", + "credit": {}, + "description": " The Image content type can be used to upload an image in various formats (JPG, GIF, PNG, SVG). The uploaded image should always have a high resolution so that it can be used flexibly, for example as a banner image. Plone automatically delivers the images in the best scaling, so there is no need to scale images down manually.", + "image_field": "image", + "size": "l", + "title": "Image", + "url": "/content-types/image" + } + }, + "blocks_layout": { + "items": [ + "f6af399c-afa2-4f21-8cd8-0c7fd1178d89", + "eaa34549-1998-45a4-957e-2ea5d7cf41c4", + "b4ca1a34-cf52-45c7-963a-6e0b09d46e49" + ] + }, + "styles": {} + }, + "f285924d-8f1c-4cc6-8505-5d506cf5fb7f": { + "@type": "gridBlock", + "blocks": { + "313a4e76-dc52-4c36-b8bf-5aac8b605eca": { + "@type": "image", + "align": "center", + "credit": {}, + "description": " The Image content type can be used to upload an image in various formats (JPG, GIF, PNG, SVG). The uploaded image should always have a high resolution so that it can be used flexibly, for example as a banner image. Plone automatically delivers the images in the best scaling, so there is no need to scale images down manually.", + "image_field": "image", + "size": "l", + "title": "Image", + "url": "/content-types/image" + } + }, + "blocks_layout": { + "items": [ + "313a4e76-dc52-4c36-b8bf-5aac8b605eca" + ] + }, + "headline": "Block Title", + "styles": {} + }, + "f2bea32a-e68e-496e-8c47-8ba97c7a0203": { + "@type": "gridBlock", + "blocks": { + "005c5f82-50a6-43b5-a2a0-2e2d79575a7a": { + "@type": "image", + "align": "center", + "credit": {}, + "description": " The Image content type can be used to upload an image in various formats (JPG, GIF, PNG, SVG). The uploaded image should always have a high resolution so that it can be used flexibly, for example as a banner image. Plone automatically delivers the images in the best scaling, so there is no need to scale images down manually.", + "image_field": "image", + "size": "l", + "title": "Image - Light", + "url": "/content-types/image-light" + }, + "5026c16c-7ed3-4c0d-9417-1d242980a9c0": { + "@type": "image", + "align": "center", + "credit": {}, + "description": " The Image content type can be used to upload an image in various formats (JPG, GIF, PNG, SVG). The uploaded image should always have a high resolution so that it can be used flexibly, for example as a banner image. Plone automatically delivers the images in the best scaling, so there is no need to scale images down manually.", + "image_field": "image", + "size": "l", + "title": "Image - Light", + "url": "/content-types/image-light" + }, + "b6bc575a-f53b-4ce6-8a83-1340aa5bddb7": { + "@type": "image", + "align": "center", + "credit": {}, + "description": " The Image content type can be used to upload an image in various formats (JPG, GIF, PNG, SVG). The uploaded image should always have a high resolution so that it can be used flexibly, for example as a banner image. Plone automatically delivers the images in the best scaling, so there is no need to scale images down manually.", + "image_field": "image", + "size": "l", + "title": "Image", + "url": "/content-types/image" + }, + "da85c8f3-5de2-4d66-822d-a177e42821ff": { + "@type": "image", + "align": "center", + "credit": {}, + "description": " The Image content type can be used to upload an image in various formats (JPG, GIF, PNG, SVG). The uploaded image should always have a high resolution so that it can be used flexibly, for example as a banner image. Plone automatically delivers the images in the best scaling, so there is no need to scale images down manually.", + "image_field": "image", + "size": "l", + "title": "Image", + "url": "/content-types/image" + } + }, + "blocks_layout": { + "items": [ + "5026c16c-7ed3-4c0d-9417-1d242980a9c0", + "da85c8f3-5de2-4d66-822d-a177e42821ff", + "b6bc575a-f53b-4ce6-8a83-1340aa5bddb7", + "005c5f82-50a6-43b5-a2a0-2e2d79575a7a" + ] + }, + "styles": {} + } + }, + "blocks_layout": { + "items": [ + "a1c1ca3e-6643-4e39-abda-3bf7846daeef", + "f285924d-8f1c-4cc6-8505-5d506cf5fb7f", + "83675906-07fc-468d-b0f3-71536fcb81eb", + "c76741bb-803f-4680-8bee-cb4bdaedf284", + "f2bea32a-e68e-496e-8c47-8ba97c7a0203", + "9c34ee64-05bd-470f-ba3c-de604ec47591", + "527d1573-85c1-47c7-928a-8dea32153e83", + "14b875e3-8bda-4610-98dc-ebbd03b8c929", + "b769baa0-8834-4434-b1d6-4b612aa6f714" + ] + }, + "contributors": [], + "created": "2023-07-06T21:35:22+00:00", + "creators": [ + "admin" + ], + "description": "\nThe Grid block allows adding multi-column blocks. A grid block can contain between one and four columns of different blocks. Text, teasers, images and videos can be added in a grid block.", + "effective": "2023-07-06T18:35:00", + "exclude_from_nav": false, + "expires": null, + "id": "image", + "is_folderish": true, + "language": "en", + "layout": "document_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2023-09-22T14:35:52+00:00", + "parent": { + "@id": "/block/grid-block", + "@type": "Document", + "UID": "99c70917b6894af08dd306fdbc0eff6a", + "description": " The Grid block allows adding multi-column blocks. A grid block can contain between one and four columns of different blocks. Teasers and images can be added in a grid block.", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Grid", + "type_title": "Page" + }, + "preview_caption": null, + "preview_image": null, + "review_state": "published", + "rights": "", + "subjects": [], + "title": "Grid-image block", + "type_title": "Page", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2023-07-06T21:35:22+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2023-07-06T21:35:22+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/8.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/8.json new file mode 100644 index 0000000..9545059 --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/8.json @@ -0,0 +1,129 @@ +{ + "@id": "/block/grid-block/listing", + "@type": "Document", + "UID": "3ac4a2c6c4034a1686bc0ee2d2072fd6", + "allow_discussion": false, + "blocks": { + "5a361b25-3e19-4c06-866f-a2db6feed983": { + "@type": "gridBlock", + "blocks": { + "0fae8b67-374c-4ca2-b3e0-86114e2f17e1": { + "@type": "listing", + "headlineTag": "h2", + "querystring": { + "limit": "7", + "query": [ + { + "i": "path", + "o": "plone.app.querystring.operation.string.absolutePath", + "v": "/block/grid-block" + } + ], + "sort_on": "getId", + "sort_order": "descending", + "sort_order_boolean": true + }, + "styles": {}, + "variation": "default" + }, + "b940ae89-2b34-472b-aac8-f3d96dfe46f4": { + "@type": "listing", + "headlineTag": "h2", + "querystring": { + "limit": "7", + "query": [ + { + "i": "path", + "o": "plone.app.querystring.operation.string.absolutePath", + "v": "/block/grid-block" + } + ], + "sort_order": "ascending" + }, + "styles": {}, + "variation": "default" + } + }, + "blocks_layout": { + "items": [ + "b940ae89-2b34-472b-aac8-f3d96dfe46f4", + "0fae8b67-374c-4ca2-b3e0-86114e2f17e1" + ] + }, + "styles": {} + }, + "fc7973d9-34e3-484c-a20b-1af7eecd9879": { + "@type": "title" + } + }, + "blocks_layout": { + "items": [ + "fc7973d9-34e3-484c-a20b-1af7eecd9879", + "5a361b25-3e19-4c06-866f-a2db6feed983" + ] + }, + "contributors": [], + "created": "2023-07-06T21:35:22+00:00", + "creators": [ + "admin" + ], + "description": "\nThe Grid block allows adding multi-column blocks. A grid block can contain between one and four columns of different blocks. This is a grid block with multiple listing blocks.", + "effective": "2023-07-06T18:35:00", + "exclude_from_nav": false, + "expires": null, + "id": "listing", + "is_folderish": true, + "language": "en", + "layout": "document_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2023-09-27T08:36:08+00:00", + "parent": { + "@id": "/block/grid-block", + "@type": "Document", + "UID": "99c70917b6894af08dd306fdbc0eff6a", + "description": " The Grid block allows adding multi-column blocks. A grid block can contain between one and four columns of different blocks. Teasers and images can be added in a grid block.", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Grid", + "type_title": "Page" + }, + "preview_caption": null, + "preview_image": { + "blob_path": "blobs/3ac4a2c6c4034a1686bc0ee2d2072fd6-preview_image/black-starry-night.jpg", + "content-type": "image/jpeg", + "filename": "black-starry-night.jpg", + "height": 1708, + "size": 693013, + "width": 2400 + }, + "review_state": "published", + "rights": "", + "subjects": [], + "title": "Grid-Listing", + "type_title": "Page", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2023-07-06T21:35:22+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2023-07-06T21:35:22+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/9.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/9.json new file mode 100644 index 0000000..eaab055 --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/items/9.json @@ -0,0 +1,632 @@ +{ + "@id": "/block/grid-block/teaser", + "@type": "Document", + "UID": "c2adb9f7b0824bd5a3e07048d887f48d", + "allow_discussion": false, + "blocks": { + "01108cdc-39a3-4164-b29c-5b9680e8a49b": { + "@type": "gridBlock", + "blocks": { + "29dc74f3-100a-4af7-9124-65d087996abb": { + "@type": "teaser", + "description": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu. ", + "head_title": "Head title", + "href": [ + { + "@id": "../../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "Title": "Page", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Page" + } + ], + "styles": { + "align": "left" + }, + "title": "Teaser Title H2" + }, + "869eb9ca-f6bc-498f-b420-f548b6c37e9c": { + "@type": "teaser", + "description": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu.", + "head_title": "Head title", + "href": [ + { + "@id": "../../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "Title": "Page", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Page" + } + ], + "styles": { + "align": "left" + }, + "title": "Teaser Title H2" + }, + "bfffb241-cc76-4210-99e7-fbb59901dc65": { + "@type": "teaser", + "description": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu.", + "head_title": "Head title", + "href": [ + { + "@id": "../../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "Title": "Page", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Page" + } + ], + "styles": { + "align": "left" + }, + "title": "Teaser Title H2" + } + }, + "blocks_layout": { + "items": [ + "29dc74f3-100a-4af7-9124-65d087996abb", + "869eb9ca-f6bc-498f-b420-f548b6c37e9c", + "bfffb241-cc76-4210-99e7-fbb59901dc65" + ] + }, + "styles": {} + }, + "0a108490-fce7-487f-a868-810eae46bba8": { + "@type": "gridBlock", + "blocks": { + "6a24c82a-7c14-4a83-b456-4583d8d9261a": { + "@type": "teaser", + "description": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "head_title": "Head title", + "href": [ + { + "@id": "../../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "Title": "Page", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Page" + } + ], + "styles": { + "align": "left" + }, + "title": "Teaser Title H2" + }, + "f2ef0f24-044d-4ce1-a41b-5187db0637b7": { + "@type": "teaser", + "description": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "head_title": "Head title", + "href": [ + { + "@id": "../../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "Title": "Page", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Page" + } + ], + "styles": { + "align": "left" + }, + "title": "Teaser Title H2" + } + }, + "blocks_layout": { + "items": [ + "f2ef0f24-044d-4ce1-a41b-5187db0637b7", + "6a24c82a-7c14-4a83-b456-4583d8d9261a" + ] + }, + "styles": { + "backgroundColor": "grey" + } + }, + "22f4533e-f75a-4b1b-ba3e-6180f9ca396c": { + "@type": "gridBlock", + "blocks": { + "0be1c75d-9fe3-40a9-842e-800b7a53322f": { + "@type": "teaser", + "description": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu. ", + "head_title": "Head title", + "href": [ + { + "@id": "../../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "Title": "Page", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Page" + } + ], + "styles": { + "align": "left" + }, + "title": "Teaser Title H2" + }, + "992a57a4-ae9a-4322-a5b2-32663fa8d45d": { + "@type": "teaser", + "description": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu. ", + "head_title": "Head title", + "href": [ + { + "@id": "../../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "Title": "Page", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Page" + } + ], + "styles": { + "align": "left" + }, + "title": "Teaser Title H2" + }, + "d1c658cc-8d3b-40c5-b39b-50eb84e57f1f": { + "@type": "teaser", + "description": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu. ", + "head_title": "Head title", + "href": [ + { + "@id": "../../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "Title": "Page", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Page" + } + ], + "styles": { + "align": "left" + }, + "title": "Teaser Title H2" + } + }, + "blocks_layout": { + "items": [ + "d1c658cc-8d3b-40c5-b39b-50eb84e57f1f", + "992a57a4-ae9a-4322-a5b2-32663fa8d45d", + "0be1c75d-9fe3-40a9-842e-800b7a53322f" + ] + }, + "styles": { + "backgroundColor": "grey" + } + }, + "270af4ab-c5b1-4d32-a071-cf6c324a5234": { + "@type": "gridBlock", + "blocks": { + "102491b0-6dcc-4830-9fb7-4d360c71d0be": { + "@type": "teaser", + "description": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl.", + "head_title": "Head title", + "href": [ + { + "@id": "../../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "Title": "Page", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Page" + } + ], + "styles": { + "align": "left" + }, + "title": "Teaser Title H2" + }, + "35a0cd10-3bfd-40b6-9131-f4111294072c": { + "@type": "teaser", + "description": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl.", + "head_title": "Head title", + "href": [ + { + "@id": "../../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "Title": "Page", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Page" + } + ], + "styles": { + "align": "left" + }, + "title": "Teaser Title H2" + }, + "d118f0fc-9a2a-4950-9e10-d2d8ca21ea5c": { + "@type": "teaser", + "description": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl.", + "head_title": "Head title", + "href": [ + { + "@id": "../../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "Title": "Page", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Page" + } + ], + "styles": { + "align": "left" + }, + "title": "Teaser Title H2" + }, + "e3cbde6c-8e5e-4889-97dc-2d95fa210b7e": { + "@type": "teaser", + "description": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl.", + "head_title": "Head title", + "href": [ + { + "@id": "../../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "Title": "Page", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Page" + } + ], + "styles": { + "align": "left" + }, + "title": "Teaser Title H2" + } + }, + "blocks_layout": { + "items": [ + "102491b0-6dcc-4830-9fb7-4d360c71d0be", + "d118f0fc-9a2a-4950-9e10-d2d8ca21ea5c", + "35a0cd10-3bfd-40b6-9131-f4111294072c", + "e3cbde6c-8e5e-4889-97dc-2d95fa210b7e" + ] + }, + "styles": {} + }, + "54548b1e-b99f-4679-9fc6-567e940c4926": { + "@type": "gridBlock", + "blocks": { + "51483392-532d-45f4-a0b0-eb11426421fc": { + "@type": "teaser", + "description": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "head_title": "Head title", + "href": [ + { + "@id": "../../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "Title": "Page", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Page" + } + ], + "preview_image": [], + "styles": { + "align": "left" + }, + "title": "Teaser Title H2" + } + }, + "blocks_layout": { + "items": [ + "51483392-532d-45f4-a0b0-eb11426421fc" + ] + }, + "headline": "Block Title", + "styles": {} + }, + "828a7be1-0ab3-4663-9069-4581f5be63c1": { + "@type": "title" + }, + "a388b571-6679-4cde-b2de-cf0352b69f36": { + "@type": "gridBlock", + "blocks": { + "b5740de1-5f55-4829-83f7-eff86f2bda49": { + "@type": "teaser", + "description": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "head_title": "Head title", + "href": [ + { + "@id": "../../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "Title": "Page", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Page" + } + ], + "styles": { + "align": "left" + }, + "title": "Teaser Title H2" + }, + "bfcf051a-e2c7-41bd-ad15-995a743d3d15": { + "@type": "teaser", + "description": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "head_title": "Head title", + "href": [ + { + "@id": "../../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "Title": "Page", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Page" + } + ], + "styles": { + "align": "left" + }, + "title": "Teaser Title H2" + } + }, + "blocks_layout": { + "items": [ + "b5740de1-5f55-4829-83f7-eff86f2bda49", + "bfcf051a-e2c7-41bd-ad15-995a743d3d15" + ] + }, + "styles": {} + }, + "d014183d-90b3-4716-9fad-b375d3ef78eb": { + "@type": "gridBlock", + "blocks": { + "31c656b3-5315-4460-8dd2-7ea623be0e75": { + "@type": "teaser", + "description": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl.", + "head_title": "Head title", + "href": [ + { + "@id": "../../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "Title": "Page", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Page" + } + ], + "styles": { + "align": "left" + }, + "title": "Teaser Title H2" + }, + "9e207ed1-8ea6-48a9-b74e-be16f3750eb7": { + "@type": "teaser", + "description": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl.", + "head_title": "Head title", + "href": [ + { + "@id": "../../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "Title": "Page", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Page" + } + ], + "styles": { + "align": "left" + }, + "title": "Teaser Title H2" + }, + "d55625af-5b41-42e6-93c6-3f7b29f1ec8e": { + "@type": "teaser", + "description": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl.", + "head_title": "Head title", + "href": [ + { + "@id": "../../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "Title": "Page", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Page" + } + ], + "styles": { + "align": "left" + }, + "title": "Teaser Title H2" + }, + "f5fbd1e2-4887-4bd4-96d0-646321a38e93": { + "@type": "teaser", + "description": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl.", + "head_title": "Head title", + "href": [ + { + "@id": "../../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "Title": "Page", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Page" + } + ], + "styles": { + "align": "left" + }, + "title": "Teaser Title H2" + } + }, + "blocks_layout": { + "items": [ + "d55625af-5b41-42e6-93c6-3f7b29f1ec8e", + "f5fbd1e2-4887-4bd4-96d0-646321a38e93", + "31c656b3-5315-4460-8dd2-7ea623be0e75", + "9e207ed1-8ea6-48a9-b74e-be16f3750eb7" + ] + }, + "styles": { + "backgroundColor": "grey" + } + }, + "dab51a65-b8bc-41bc-a13a-208bb32062d3": { + "@type": "gridBlock", + "blocks": { + "22f2108c-7496-49ed-a592-115d011f165b": { + "@type": "teaser", + "description": "Lorem ipsum dolor sit amet adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.", + "head_title": "Head title", + "href": [ + { + "@id": "../../../resolveuid/7ab9c48ede33415fa2a66a99549c8f70", + "@type": "Document", + "Description": "The Page content type can be used to display content on a single page of the website. Pages can be structured using text, images and blocks.", + "Title": "Page", + "getRemoteUrl": null, + "hasPreviewImage": true, + "head_title": null, + "image_field": "preview_image", + "title": "Page" + } + ], + "styles": { + "align": "left" + }, + "title": "Teaser Title H2" + } + }, + "blocks_layout": { + "items": [ + "22f2108c-7496-49ed-a592-115d011f165b" + ] + }, + "headline": "Block Title", + "styles": { + "backgroundColor": "grey" + } + } + }, + "blocks_layout": { + "items": [ + "828a7be1-0ab3-4663-9069-4581f5be63c1", + "54548b1e-b99f-4679-9fc6-567e940c4926", + "a388b571-6679-4cde-b2de-cf0352b69f36", + "01108cdc-39a3-4164-b29c-5b9680e8a49b", + "270af4ab-c5b1-4d32-a071-cf6c324a5234", + "dab51a65-b8bc-41bc-a13a-208bb32062d3", + "0a108490-fce7-487f-a868-810eae46bba8", + "22f4533e-f75a-4b1b-ba3e-6180f9ca396c", + "d014183d-90b3-4716-9fad-b375d3ef78eb" + ] + }, + "contributors": [], + "created": "2023-07-06T21:35:22+00:00", + "creators": [ + "admin" + ], + "description": "\nThe Grid block allows adding multi-column blocks. A grid block can contain between one and four columns of different blocks. Text, teasers, images and videos can be added in a grid block.", + "effective": "2023-07-06T18:35:00", + "exclude_from_nav": false, + "expires": null, + "id": "teaser", + "is_folderish": true, + "language": "en", + "layout": "document_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2024-03-08T14:24:21+00:00", + "parent": { + "@id": "/block/grid-block", + "@type": "Document", + "UID": "99c70917b6894af08dd306fdbc0eff6a", + "description": " The Grid block allows adding multi-column blocks. A grid block can contain between one and four columns of different blocks. Teasers and images can be added in a grid block.", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Grid", + "type_title": "Page" + }, + "preview_caption": null, + "preview_image": null, + "review_state": "published", + "rights": "", + "subjects": [], + "title": "Grid-Teaser block", + "type_title": "Page", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2023-07-06T21:35:22+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2023-07-06T21:35:22+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/ordering.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/ordering.json new file mode 100644 index 0000000..60937e6 --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/ordering.json @@ -0,0 +1,214 @@ +[ + { + "order": 0, + "uuid": "9abc1a813bcf46388e565b277bd8c6bf" + }, + { + "order": 0, + "uuid": "f8cd4a2d8d7c4703b4e41d2093b21aed" + }, + { + "order": 0, + "uuid": "28cc586c504d436aa26fd2aa12f16f84" + }, + { + "order": 0, + "uuid": "2e8ed811e2954e9882d561be8b25cb8c" + }, + { + "order": 0, + "uuid": "f0018ecb26ac442aa1f03482a09c8b81" + }, + { + "order": 1, + "uuid": "05bace45294c45d5ab93de883e7ce702" + }, + { + "order": 1, + "uuid": "405582582e70493c96a6c549444a1eaa" + }, + { + "order": 1, + "uuid": "3ac4a2c6c4034a1686bc0ee2d2072fd6" + }, + { + "order": 1, + "uuid": "8cc3e9af77c0452aa2278b0bfdcf9c85" + }, + { + "order": 1, + "uuid": "c8531174ccd54e39a284a347e9cece83" + }, + { + "order": 2, + "uuid": "7de78fea55354a29ad78b909efb07436" + }, + { + "order": 2, + "uuid": "99c70917b6894af08dd306fdbc0eff6a" + }, + { + "order": 2, + "uuid": "c2adb9f7b0824bd5a3e07048d887f48d" + }, + { + "order": 2, + "uuid": "7ab9c48ede33415fa2a66a99549c8f70" + }, + { + "order": 2, + "uuid": "d2ce9e4549e54ea8978cf521bb997ad4" + }, + { + "order": 3, + "uuid": "0c351dd841c34c6da9c313b1bc551e34" + }, + { + "order": 3, + "uuid": "fb086a3d1d3d4a9ebf9bc864d2172e79" + }, + { + "order": 3, + "uuid": "2f69aa417e894fd3bf23d393287b369e" + }, + { + "order": 3, + "uuid": "a2f2c6a524094c9482cc5384883fd8e7" + }, + { + "order": 3, + "uuid": "cffd9eef5c154c04891af9ef9185ed8c" + }, + { + "order": 4, + "uuid": "8416628543f146ff9a18d281c03e2399" + }, + { + "order": 4, + "uuid": "7adc12f0e7604982a6cdcb9437bccf66" + }, + { + "order": 4, + "uuid": "d7c7e8ed1ffb4b2fa20525f4f434ba27" + }, + { + "order": 5, + "uuid": "40a436ad604f4f80aeafe0977806760a" + }, + { + "order": 5, + "uuid": "51aa57a0fb694d528ee5a76af0107131" + }, + { + "order": 5, + "uuid": "6a82ae8d8a434e019b404f4387fe1a42" + }, + { + "order": 6, + "uuid": "00cef5f245a342958288ace545e3c097" + }, + { + "order": 6, + "uuid": "195d96ca9952493cbffa69cda040b8b3" + }, + { + "order": 6, + "uuid": "f51777793dab4a61982e35dfa71d0575" + }, + { + "order": 7, + "uuid": "6bd32a3367ea4254b295db642655b9d3" + }, + { + "order": 7, + "uuid": "af85ff98cd6446eebcba56305ed89fed" + }, + { + "order": 7, + "uuid": "e017bd4a0b3845aab26f6d855cc4ef14" + }, + { + "order": 8, + "uuid": "e090d954d0a448bca81c1a646e673a12" + }, + { + "order": 8, + "uuid": "362783c333434d2f89a00bd48ea37e34" + }, + { + "order": 8, + "uuid": "1efc7b73b28e4edeaf40040709299d69" + }, + { + "order": 9, + "uuid": "928010d84e5d4df2b2282f3e179d6b1a" + }, + { + "order": 9, + "uuid": "eec82559bf3242a6be4d43bc2096f399" + }, + { + "order": 9, + "uuid": "7950cae06c994276930f6d13151308c5" + }, + { + "order": 10, + "uuid": "546e82cce6c842d0a4046a0131539bd2" + }, + { + "order": 10, + "uuid": "6cca02c5580d4f7c865af74835ceab9d" + }, + { + "order": 11, + "uuid": "102f648399914851951ffa3fefc8665c" + }, + { + "order": 11, + "uuid": "970ec24c76784c66a06d8c8d8b6522b2" + }, + { + "order": 12, + "uuid": "bd2b39d2745847db82ed197a4eb1effc" + }, + { + "order": 12, + "uuid": "49d22a94521c4883a1bb448ac7863cdd" + }, + { + "order": 13, + "uuid": "2508797173824f0e9f82bb2e7cfe922d" + }, + { + "order": 14, + "uuid": "3906609d0456404ca7146f6aa1f12f32" + }, + { + "order": 15, + "uuid": "6d37dd19ef754344aaa254fa288e44b4" + }, + { + "order": 16, + "uuid": "13de82575e16493fbc54514e548a9f3c" + }, + { + "order": 42, + "uuid": "a5bf990b119747c4b2855fedc1ea0185" + }, + { + "order": 43, + "uuid": "342acac105fe4a43ae0a19d49d752e0b" + }, + { + "order": 44, + "uuid": "425695d2b7cb47e69374d6f211f17e38" + }, + { + "order": 45, + "uuid": "e8178744e30a418b9a5768997bb29a19" + }, + { + "order": 46, + "uuid": "c40a2be214b645338a7ef2e711e2f5c6" + } +] \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/redirects.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/redirects.json new file mode 100644 index 0000000..6dbf726 --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/content/redirects.json @@ -0,0 +1,15 @@ +{ + "/Plone/content/event": "/Plone/content-types/copy_of_event", + "/Plone/content/example-image.jpg": "/Plone/content-types/example-image.jpg", + "/Plone/content/external-link": "/Plone/content-types/external-link", + "/Plone/content/news-item": "/Plone/content-types/copy_of_news-item", + "/Plone/content/page": "/Plone/content-types/copy_of_page", + "/Plone/content/typography": "/Plone/content-types/typography", + "/Plone/form": "/Plone/block/form", + "/Plone/image.png": "/Plone/plone-foundation.png", + "/Plone/images/image": "/Plone/content-types/image", + "/Plone/images/image-light": "/Plone/content-types/image-light", + "/Plone/images/testimage.jpg": "/Plone/images/penguin1.jpg", + "/Plone/testimage.jpg": "/Plone/images/penguin1.jpg", + "/Plone/typography": "/Plone/content-types/typography" +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/image.png b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/image.png new file mode 100644 index 0000000..7940d72 Binary files /dev/null and b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/image.png differ diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/profiles.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/profiles.json new file mode 100644 index 0000000..d0f5409 --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/profiles.json @@ -0,0 +1,10 @@ +{ + "base": [ + "plone.app.contenttypes:default", + "plone.app.caching:default", + "plonetheme.barceloneta:default", + "collective.volto.formsupport:default", + "plone.volto:default", + "plone6demo:default" + ] +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/schema.json b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/schema.json new file mode 100644 index 0000000..ae4d374 --- /dev/null +++ b/backend/src/plone6demo/src/plone6demo/distributions/voltodemo/schema.json @@ -0,0 +1,43 @@ +{ + "schema": { + "title": "Create a Plone site", + "description": "Adds a new Plone content management system site to the underlying application server.", + "type": "object", + "required": [ + "site_id", + "title" + ], + "properties": { + "site_id": { + "type": "string", + "title": "Path Identifier", + "default": "Plone", + "description": "The ID of the site. No special characters or spaces are allowed. This ends up as part of the URL unless hidden by an upstream web server." + }, + "title": { + "type": "string", + "title": "Title", + "default": "Welcome to Plone 6!", + "description": "A short title for the site. This will be shown as part of the title of the browser window on each page." + }, + "description": { + "type": "string", + "title": "Site Description", + "default": "A Plone Site" + }, + "default_language": { + "$ref": "#/definitions/languages" + }, + "portal_timezone": { + "$ref": "#/definitions/timezones" + }, + "setup_content": { + "type": "boolean", + "title": "Create Example Content", + "description": "Should example content be added during site creation?", + "default": true + } + } + }, + "uischema": {} +} \ No newline at end of file diff --git a/backend/src/plone6demo/src/plone6demo/profiles.zcml b/backend/src/plone6demo/src/plone6demo/profiles.zcml index 11e8188..cf3a6b8 100644 --- a/backend/src/plone6demo/src/plone6demo/profiles.zcml +++ b/backend/src/plone6demo/src/plone6demo/profiles.zcml @@ -12,15 +12,6 @@ directory="profiles/default" /> - - - - 20221212001 - diff --git a/backend/src/plone6demo/src/plone6demo/setuphandlers/__init__.py b/backend/src/plone6demo/src/plone6demo/setuphandlers/__init__.py index 09a6d19..042d101 100644 --- a/backend/src/plone6demo/src/plone6demo/setuphandlers/__init__.py +++ b/backend/src/plone6demo/src/plone6demo/setuphandlers/__init__.py @@ -1,7 +1,3 @@ -from plone import api -from plone6demo import logger -from plone6demo.setuphandlers import content -from plone6demo.setuphandlers import users from Products.CMFPlone.interfaces import INonInstallable from zope.interface import implementer @@ -13,22 +9,3 @@ def getNonInstallableProfiles(self): return [ "plone6demo:uninstall", ] - - -def populate_portal(context): - """Post install script""" - portal = api.portal.get() - # Delete content - content.delete_content(portal) - logger.info("Deleted default portal content") - user = users.create_default_user() - creators = [user.id] - logger.info("Created default user") - # Create other users - users.create_team_accounts() - logger.info("Created team accounts") - # Create Initial content - content.populate_portal(portal, creators) - logger.info("Created initial content") - # Update cover content - content.update_home(portal, creators) diff --git a/backend/src/plone6demo/src/plone6demo/setuphandlers/content.py b/backend/src/plone6demo/src/plone6demo/setuphandlers/content.py deleted file mode 100644 index f39fa53..0000000 --- a/backend/src/plone6demo/src/plone6demo/setuphandlers/content.py +++ /dev/null @@ -1,103 +0,0 @@ -from DateTime import DateTime -from dateutil.parser import parse -from plone import api -from plone.app.dexterity.behaviors import constrains -from plone.namedfile.file import NamedBlobImage -from Products.CMFPlone.interfaces.constrains import ISelectableConstrainTypes - -import json -import os - - -TO_DELETE = ("front-page", "news", "events", "Members") - -__location__ = os.path.realpath(os.path.join(os.getcwd(), os.path.dirname(__file__))) - - -def delete_content(portal): - """Delete default content.""" - o_ids = [o_id for o_id in TO_DELETE if o_id in portal.objectIds()] - for o_id in o_ids: - api.content.delete(obj=portal[o_id]) - - -def _get_image(image: str) -> NamedBlobImage: - filepath = os.path.join(__location__, f"{image}") - with open(filepath, "rb") as f_in: - data = f_in.read() - return NamedBlobImage(data) - - -def date_from_string(value: str) -> DateTime: - return DateTime(parse(value)) - - -def _create_content(portal, item: dict, creators: list): - """Create a content.""" - container = portal.restrictedTraverse(item.get("_parent")) - o_id = item["id"] - - if o_id in container.objectIds(): - return container[o_id] - - item["creators"] = creators - permissions = item.get("_permissions", {}) - allowed_types = item.get("_allowed_types", []) - transitions = item.get("_transitions", []) - attributes = item.get("_attributes", {}) - payload = {k: v for k, v in item.items() if not k.startswith("_")} - payload["container"] = container - image_path = item.get("_image", None) - if image_path: - payload["image"] = _get_image(image_path) - date_keys = [k for k in payload.keys() if k.endswith("_date")] - for key in date_keys: - payload[key] = date_from_string(payload[key]) - - modified = payload.get("modification_date", None) - content = api.content.create(**payload) - # Apply attributes - if attributes: - for key, value in attributes.items(): - setattr(content, key, value) - for transition in transitions: - api.content.transition(obj=content, transition=transition) - # Set permissions - for permission_id, roles in permissions.items(): - content.manage_permission(permission_id, roles=roles) - if allowed_types: - behavior = ISelectableConstrainTypes(content) - behavior.setConstrainTypesMode(constrains.ENABLED) - behavior.setImmediatelyAddableTypes(allowed_types) - if modified: - content.modification_date = modified - content.reindexObject(idxs=["modified"]) - return content - - -def populate_portal(portal, creators): - """Create content structure.""" - with open(os.path.join(__location__, "contents.json"), "r") as f_in: - contents = json.load(f_in) - - # Contents are created by Editors - with api.env.adopt_roles(["Editor", "Manager"]): - for item in contents: - _create_content(portal, item, creators) - - -def _update_home(portal, item: dict): - """Update front page.""" - for key, value in item.items(): - setattr(portal, key, value) - return portal - - -def update_home(portal, creators): - """Create content structure.""" - with open(os.path.join(__location__, "home.json"), "r") as f_in: - content = json.load(f_in) - - # Contents are created by Editors - with api.env.adopt_roles(["Editor", "Manager"]): - _update_home(portal, content) diff --git a/backend/src/plone6demo/src/plone6demo/setuphandlers/contents.json b/backend/src/plone6demo/src/plone6demo/setuphandlers/contents.json deleted file mode 100644 index 4aa958b..0000000 --- a/backend/src/plone6demo/src/plone6demo/setuphandlers/contents.json +++ /dev/null @@ -1,26 +0,0 @@ -[ - { - "_parent": "", - "type": "Document", - "id": "images", - "title": "Images", - "description": "Image bank.", - "_transitions": [ - "publish" - ], - "_allowed_types": [ - "Image" - ], - "exclude_from_nav": true - }, - { - "_parent": "images", - "type": "Image", - "id": "plone-foundation.png", - "title": "Plone Foundation", - "description": "", - "_image": "images/plone-foundation.png", - "_transitions": [], - "exclude_from_nav": false - } -] diff --git a/backend/src/plone6demo/src/plone6demo/setuphandlers/home.json b/backend/src/plone6demo/src/plone6demo/setuphandlers/home.json deleted file mode 100644 index 9b1dfdf..0000000 --- a/backend/src/plone6demo/src/plone6demo/setuphandlers/home.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "blocks": { - "1006adfe-d9b1-4e70-9b32-a9158310723d": { - "@type": "slate", - "plaintext": " Plone is an enterprise CMS built with Python.", - "value": [ - { - "children": [ - { - "text": "" - }, - { - "children": [ - { - "text": "Plone" - } - ], - "type": "b" - }, - { - "text": " is an enterprise CMS built with " - }, - { - "children": [ - { - "text": "Python" - } - ], - "data": { - "url": "https://python.org" - }, - "type": "link" - }, - { - "text": "." - } - ], - "type": "p" - } - ] - } - }, - "blocks_layout": { - "items": [ - "1006adfe-d9b1-4e70-9b32-a9158310723d" - ] - }, - "title": "Plone 6 Demo Site" -} diff --git a/backend/src/plone6demo/src/plone6demo/setuphandlers/users.json b/backend/src/plone6demo/src/plone6demo/setuphandlers/users.json deleted file mode 100644 index 84aad06..0000000 --- a/backend/src/plone6demo/src/plone6demo/setuphandlers/users.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "portal": [ - { - "email": "collective@plone.org", - "properties": { - "fullname": "Plone 6 Demo Site", - "location": "World" - }, - "groups": [ - ], - "roles": [ - "Member" - ], - "username": "plone-6-demo-site" - } - ], - "team": [ - ] -} diff --git a/backend/src/plone6demo/src/plone6demo/setuphandlers/users.py b/backend/src/plone6demo/src/plone6demo/setuphandlers/users.py deleted file mode 100644 index b3e4720..0000000 --- a/backend/src/plone6demo/src/plone6demo/setuphandlers/users.py +++ /dev/null @@ -1,47 +0,0 @@ -from plone import api - -import json -import os - - -__location__ = os.path.realpath(os.path.join(os.getcwd(), os.path.dirname(__file__))) - - -def _users_info() -> dict: - """Return users info.""" - with open(os.path.join(__location__, "users.json"), "r") as f_in: - users = json.load(f_in) - return users - - -def create_default_user(): - """Create a default user to organize content.""" - all_users = _users_info() - user_info = all_users["portal"][0] - groups = user_info.pop("groups") - user = api.user.create(**user_info) - for group_name in groups: - api.group.add_user(groupname=group_name, user=user) - return user - - -def create_accounts(accounts: list) -> list: - """Create user accounts.""" - new_users = [] - for user_info in accounts: - username = user_info.get("username", "") - if api.user.get(username=username): - # User already exists, skip it - continue - groups = user_info.pop("groups") - user = api.user.create(**user_info) - for group_name in groups: - api.group.add_user(groupname=group_name, user=user) - new_users.append(user) - return new_users - - -def create_team_accounts(): - """Create team accounts.""" - all_users = _users_info() - return create_accounts(all_users["team"]) diff --git a/classic/Makefile b/classic/Makefile index 607c59a..457ac15 100644 --- a/classic/Makefile +++ b/classic/Makefile @@ -15,11 +15,15 @@ GREEN=`tput setaf 2` RESET=`tput sgr0` YELLOW=`tput setaf 3` +# Set distributions still in development +DISTRIBUTIONS="classicdemo" +ALLOWED_DISTRIBUTIONS="classicdemo" + PLONE_VERSION=6.0.10.1 BACKEND_FOLDER=$(shell dirname $(realpath $(firstword $(MAKEFILE_LIST)))) -CODE_QUALITY_VERSION=2.0.4 +CODE_QUALITY_VERSION=2.0.2 ifndef LOG_LEVEL LOG_LEVEL=INFO endif @@ -42,7 +46,7 @@ endif # version ok? PYTHON_VERSION_MIN=3.8 PYTHON_VERSION_OK=$(shell $(PYTHON) -c "import sys; print((int(sys.version_info[0]), int(sys.version_info[1])) >= tuple(map(int, '$(PYTHON_VERSION_MIN)'.split('.'))))") -ifeq ($(PYTHON_VERSION_OK),0) +ifeq ($(PYTHON_VERSION_OK),False) $(error "Need python $(PYTHON_VERSION) >= $(PYTHON_VERSION_MIN)") endif @@ -87,7 +91,7 @@ clean-test: ## remove test and coverage artifacts bin/pip: @echo "$(GREEN)==> Setup Virtual Env$(RESET)" $(PYTHON) -m venv . - bin/pip install -U "pip" "wheel" "cookiecutter" "mxdev" + bin/pip install -U "setuptools" "pip" "wheel" "cookiecutter" "mxdev" .PHONY: config config: bin/pip ## Create instance configuration @@ -150,8 +154,8 @@ test_quiet: ## run tests removing deprecation warnings PYTHONWARNINGS=ignore ./bin/zope-testrunner --auto-color --auto-progress --test-path src/plonedemo.site/src/ .PHONY: create-site -create-site: instance/etc/zope.ini ## Create a new site from scratch - PYTHONWARNINGS=ignore ./bin/zconsole run instance/etc/zope.conf ./scripts/create_site.py +create-site: ## Create a new site using default distribution and default answers + DEVELOP_DISTRIBUTIONS=$(DISTRIBUTIONS) ALLOWED_DISTRIBUTIONS=$(DISTRIBUTIONS) PYTHONWARNINGS=ignore ./bin/zconsole run instance/etc/zope.conf scripts/create-site.py .PHONY: start start: ## Start a Plone instance on localhost:8080 diff --git a/classic/instance.yaml b/classic/instance.yaml index 1d3e4dd..6d719ce 100644 --- a/classic/instance.yaml +++ b/classic/instance.yaml @@ -2,7 +2,6 @@ default_context: initial_user_name: 'admin' initial_user_password: 'admin' - load_zcml: - package_includes: ['plonedemo.site'] + zcml_package_includes: 'plonedemo.site' db_storage: direct diff --git a/classic/scripts/create-site.py b/classic/scripts/create-site.py new file mode 100644 index 0000000..ae3ce20 --- /dev/null +++ b/classic/scripts/create-site.py @@ -0,0 +1,98 @@ +from AccessControl.SecurityManagement import newSecurityManager +from pathlib import Path +from plone.distribution.api import site as site_api +from Testing.makerequest import makerequest + +import json +import logging +import os +import transaction + + +logging.basicConfig(format="%(message)s") + +# Silence some loggers +for logger_name in [ + "GenericSetup.componentregistry", + "Products.MimetypesRegistry.MimeTypesRegistry", +]: + logging.getLogger(logger_name).setLevel(logging.ERROR) + +logger = logging.getLogger("Plone Site Creation") +logger.setLevel(logging.DEBUG) + +SCRIPT_DIR = Path().cwd() / "scripts" + +truthy = frozenset(("t", "true", "y", "yes", "on", "1")) + + +def asbool(s): + """Return the boolean value ``True`` if the case-lowered value of string + input ``s`` is a :term:`truthy string`. If ``s`` is already one of the + boolean values ``True`` or ``False``, return it.""" + if s is None: + return False + if isinstance(s, bool): + return s + s = str(s).strip() + return s.lower() in truthy + + +app = makerequest(globals()["app"]) + +request = app.REQUEST + +admin = app.acl_users.getUserById("admin") +admin = admin.__of__(app.acl_users) +newSecurityManager(None, admin) + + +def get_answers_file() -> Path: + filename = f"{ANSWERS}.json" + return SCRIPT_DIR / filename + + +def parse_answers(answers_file: Path, site_id: str = "") -> dict: + answers = json.loads(answers_file.read_text()) + if "distribution" not in answers: + # This is a bug in plone.distribution and should be fixed there + answers["distribution"] = DISTRIBUTION + if site_id: + answers["site_id"] = site_id + return answers + + +# VARS +DISTRIBUTION = os.getenv("DISTRIBUTION", "classicdemo") +SITE_ID = os.getenv("SITE_ID") # if set, this overrides the value in ANSWERS +ANSWERS = os.getenv("ANSWERS", "default") +DELETE_EXISTING = asbool(os.getenv("DELETE_EXISTING")) + +# Load site creation parameters +answers_file = get_answers_file() +answers = parse_answers(answers_file, SITE_ID) +site_id = answers["site_id"] + + +logger.info(f"Creating a new Plone site @ {site_id}") +logger.info(f" - Using the {DISTRIBUTION} distribution and answers from {answers_file}") + + +if site_id in app.objectIds() and DELETE_EXISTING: + app.manage_delObjects([site_id]) + transaction.commit() + app._p_jar.sync() + logger.info(f" - Deleted existing site with id {site_id}") +else: + logger.info( + f" - Stopping site creation, as there is already a site with id {site_id}. " + "Set DELETE_EXISTING=1 to delete the existing site before creating a new one." + ) + +if site_id not in app.objectIds(): + site = site_api._create_site( + context=app, distribution_name=DISTRIBUTION, answers=answers + ) + transaction.commit() + app._p_jar.sync() + logger.info(" - Site created!") diff --git a/classic/scripts/create_site.py b/classic/scripts/create_site.py deleted file mode 100644 index 11e4162..0000000 --- a/classic/scripts/create_site.py +++ /dev/null @@ -1,66 +0,0 @@ -from AccessControl.SecurityManagement import newSecurityManager -from plonedemo.site.interfaces import IPlonedemoSiteLayer -from Products.CMFPlone.factory import _DEFAULT_PROFILE -from Products.CMFPlone.factory import addPloneSite -from Testing.makerequest import makerequest -from zope.interface import directlyProvidedBy -from zope.interface import directlyProvides - -import os -import transaction - - -truthy = frozenset(("t", "true", "y", "yes", "on", "1")) - - -def asbool(s): - """Return the boolean value ``True`` if the case-lowered value of string - input ``s`` is a :term:`truthy string`. If ``s`` is already one of the - boolean values ``True`` or ``False``, return it.""" - if s is None: - return False - if isinstance(s, bool): - return s - s = str(s).strip() - return s.lower() in truthy - - -DELETE_EXISTING = asbool(os.getenv("DELETE_EXISTING")) - -app = makerequest(app) # noQA - -request = app.REQUEST - -ifaces = [ - IPlonedemoSiteLayer, -] + list(directlyProvidedBy(request)) - -directlyProvides(request, *ifaces) - -admin = app.acl_users.getUserById("admin") -admin = admin.__of__(app.acl_users) -newSecurityManager(None, admin) - -site_id = "Plone" -payload = { - "title": "Plone 6 Demo Site", - "profile_id": _DEFAULT_PROFILE, - "extension_ids": [ - "plone.app.caching:default", - "plonetheme.barceloneta:default", - "plonedemo.site:default", - ], - "setup_content": False, - "default_language": "en", - "portal_timezone": "Europe/Berlin", -} - -if site_id in app.objectIds() and DELETE_EXISTING: - app.manage_delObjects([site_id]) - transaction.commit() - app._p_jar.sync() - -if site_id not in app.objectIds(): - site = addPloneSite(app, site_id, **payload) - transaction.commit() - app._p_jar.sync() diff --git a/classic/scripts/default.json b/classic/scripts/default.json new file mode 100644 index 0000000..baf6d0a --- /dev/null +++ b/classic/scripts/default.json @@ -0,0 +1,8 @@ +{ + "site_id": "Plone", + "title": "Welcome to Plone 6", + "description": "Site created with a new Plone Distribution", + "default_language": "en", + "portal_timezone": "Europe/Berlin", + "setup_content": true +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/setup.py b/classic/src/plonedemo.site/setup.py index e7cb195..4fd13ab 100644 --- a/classic/src/plonedemo.site/setup.py +++ b/classic/src/plonedemo.site/setup.py @@ -1,4 +1,5 @@ """Installer for the plonedemo.site package.""" + from setuptools import find_packages from setuptools import setup @@ -21,20 +22,21 @@ classifiers=[ "Environment :: Web Environment", "Framework :: Plone", - "Framework :: Plone :: 5.0", - "Framework :: Plone :: 5.1", - "Framework :: Plone :: 5.2", + "Framework :: Plone :: 6.0", + "Framework :: Plone :: Distribution", "Programming Language :: Python", - "Programming Language :: Python :: 2.7", - "Programming Language :: Python :: 3.6", - "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Operating System :: OS Independent", "License :: OSI Approved :: GNU General Public License v2 (GPLv2)", ], keywords="Python Plone", author="Philip Bauer", author_email="bauer@starzel.de", - url="https://github.com/collective/demo.plone.de", + url="https://github.com/collective/demo.plone.org", license="GPL version 2", packages=find_packages("src", exclude=["ez_setup"]), namespace_packages=["plonedemo"], @@ -47,6 +49,8 @@ "plone.restapi", "z3c.jbot", "six", + "plone.distribution", + "collective.easyform", ], extras_require={ "test": [ diff --git a/classic/src/plonedemo.site/src/plonedemo/site/browser/configure.zcml b/classic/src/plonedemo.site/src/plonedemo/site/browser/configure.zcml index 1861567..0f1cd81 100644 --- a/classic/src/plonedemo.site/src/plonedemo/site/browser/configure.zcml +++ b/classic/src/plonedemo.site/src/plonedemo/site/browser/configure.zcml @@ -22,13 +22,6 @@ type="plone" /> - - - - - - - - -

Edit this site and test Plone now!

- - diff --git a/classic/src/plonedemo.site/src/plonedemo/site/configure.zcml b/classic/src/plonedemo.site/src/plonedemo/site/configure.zcml index 66dc199..002eb32 100644 --- a/classic/src/plonedemo.site/src/plonedemo/site/configure.zcml +++ b/classic/src/plonedemo.site/src/plonedemo/site/configure.zcml @@ -19,7 +19,6 @@ description="Installs the plonedemo.site add-on." provides="Products.GenericSetup.interfaces.EXTENSION" directory="profiles/default" - post_handler=".setuphandlers.post_install" /> + + diff --git a/classic/src/plonedemo.site/src/plonedemo/site/dependencies.zcml b/classic/src/plonedemo.site/src/plonedemo/site/dependencies.zcml index 1affeeb..5bd2bf0 100644 --- a/classic/src/plonedemo.site/src/plonedemo/site/dependencies.zcml +++ b/classic/src/plonedemo.site/src/plonedemo/site/dependencies.zcml @@ -1,5 +1,6 @@ + diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/blobs/0ec640ff06e4401792c31018655050db-image/paris.jpg b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/blobs/0ec640ff06e4401792c31018655050db-image/paris.jpg new file mode 100644 index 0000000..102635d Binary files /dev/null and b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/blobs/0ec640ff06e4401792c31018655050db-image/paris.jpg differ diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/blobs/1be0093b8c624ade89eba7329f8d6947-image/turner.jpg b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/blobs/1be0093b8c624ade89eba7329f8d6947-image/turner.jpg new file mode 100644 index 0000000..322db2c Binary files /dev/null and b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/blobs/1be0093b8c624ade89eba7329f8d6947-image/turner.jpg differ diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/blobs/4423a1b21c06425886e315c4d0e3a676-image/turner.jpg b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/blobs/4423a1b21c06425886e315c4d0e3a676-image/turner.jpg new file mode 100644 index 0000000..322db2c Binary files /dev/null and b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/blobs/4423a1b21c06425886e315c4d0e3a676-image/turner.jpg differ diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/blobs/8b9931d15212461685e4f23483aed815-image/paris.jpg b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/blobs/8b9931d15212461685e4f23483aed815-image/paris.jpg new file mode 100644 index 0000000..102635d Binary files /dev/null and b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/blobs/8b9931d15212461685e4f23483aed815-image/paris.jpg differ diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/blobs/9336d0516e3f400b94c68d9f26e901a6-image/turner.jpg b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/blobs/9336d0516e3f400b94c68d9f26e901a6-image/turner.jpg new file mode 100644 index 0000000..322db2c Binary files /dev/null and b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/blobs/9336d0516e3f400b94c68d9f26e901a6-image/turner.jpg differ diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/blobs/d5a10ad499c34d699049d8027c25e4ca-image/paris.jpg b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/blobs/d5a10ad499c34d699049d8027c25e4ca-image/paris.jpg new file mode 100644 index 0000000..102635d Binary files /dev/null and b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/blobs/d5a10ad499c34d699049d8027c25e4ca-image/paris.jpg differ diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/blobs/ecaab7fb8d2c4183b8bd57080d06f7ec-image/turner.jpg b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/blobs/ecaab7fb8d2c4183b8bd57080d06f7ec-image/turner.jpg new file mode 100644 index 0000000..322db2c Binary files /dev/null and b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/blobs/ecaab7fb8d2c4183b8bd57080d06f7ec-image/turner.jpg differ diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/blobs/f552f34782cb49f69c9df6d3bfc53332-image/paris.jpg b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/blobs/f552f34782cb49f69c9df6d3bfc53332-image/paris.jpg new file mode 100644 index 0000000..102635d Binary files /dev/null and b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/blobs/f552f34782cb49f69c9df6d3bfc53332-image/paris.jpg differ diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/defaultpages.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/defaultpages.json new file mode 100644 index 0000000..f5ecf4a --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/defaultpages.json @@ -0,0 +1,22 @@ +[ + { + "default_page": "frontpage", + "default_page_uuid": "4a843a854ce0465299c6acf1ee606462", + "uuid": "1f58fedb9e2f49d688e920c912b85013" + }, + { + "default_page": "frontpage", + "default_page_uuid": "e40c713df9f1414b8c7fc0e190006a51", + "uuid": "0ec57c1f5b104a59b034553ec00908ec" + }, + { + "default_page": "frontpage", + "default_page_uuid": "fc2b43f7bbe04bec886ecd8dd287ca5e", + "uuid": "d066fc6505ca4ace9df8402aa8cad8df" + }, + { + "default_page": "frontpage", + "default_page_uuid": "ef5e5df2eeb440c7bd750f224757b58f", + "uuid": "1300ff76fc49485f99d40949ade199a5" + } +] \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/1.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/1.json new file mode 100644 index 0000000..132ddf3 --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/1.json @@ -0,0 +1,30 @@ +{ + "@id": "/Plone", + "@type": "Plone Site", + "UID": "76010a4439cd48d3afbeec33ba81bbcd", + "allow_discussion": null, + "contributors": [], + "creators": [ + "admin" + ], + "description": "A Plone Site", + "effective": null, + "exclude_from_nav": false, + "expires": null, + "id": "Plone", + "is_folderish": true, + "items_total": 4, + "language": "de", + "lock": { + "locked": false, + "stealable": true + }, + "parent": {}, + "review_state": null, + "rights": "", + "subjects": [], + "table_of_contents": null, + "text": null, + "title": "Site", + "type_title": "Website" +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/10.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/10.json new file mode 100644 index 0000000..4284537 --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/10.json @@ -0,0 +1,77 @@ +{ + "@id": "/de/demo/a-news-item", + "@type": "News Item", + "UID": "ecaab7fb8d2c4183b8bd57080d06f7ec", + "allow_discussion": false, + "changeNote": "", + "contributors": [], + "created": "2018-07-19T16:18:17+00:00", + "creators": [ + "admin" + ], + "description": "Aenean lacinia bibendum nulla sed consectetur. Cras mattis consectetur purus sit amet fermentum.", + "effective": "2018-07-19T18:19:00", + "exclude_from_nav": false, + "expires": null, + "id": "a-news-item", + "image": { + "blob_path": "blobs/ecaab7fb8d2c4183b8bd57080d06f7ec-image/turner.jpg", + "content-type": "image/jpeg", + "filename": "turner.jpg", + "height": 1002, + "size": 862842, + "width": 1664 + }, + "image_caption": null, + "is_folderish": false, + "language": "de", + "layout": "newsitem_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2024-03-08T08:53:34+00:00", + "parent": { + "@id": "/de/demo", + "@type": "Folder", + "UID": "79f01c49712d47c0977f8c35b949af7a", + "description": "Vestibulum dignissim erat id eros mollis vitae tempus leo ultricies. Cras dapibus suscipit consectetur. Integer tincidunt feugiat tristique. Sed et arcu risus. Nam venenatis, tortor ac tincidunt amet.", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Demo", + "type_title": "Ordner" + }, + "review_state": "published", + "rights": null, + "subjects": [], + "text": { + "content-type": "text/html", + "data": "

Donec sed odio dui. Etiam porta sem malesuada magna mollis euismod. Aenean lacinia bibendum nulla sed consectetur. Cras justo odio, dapibus ac facilisis in, egestas eget quam. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec id elit non mi porta gravida at eget metus.

\r\n

Curabitur blandit tempus porttitor.

\r\n

Curabitur blandit tempus porttitor. Donec id elit non mi porta gravida at eget metus. Etiam porta sem malesuada magna mollis euismod. Maecenas sed diam eget risus varius blandit sit amet non magna.

Aenean lacinia bibendum nulla sed consectetur. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Aenean lacinia bibendum nulla sed consectetur. Sed posuere consectetur est at lobortis.

", + "encoding": "utf-8" + }, + "title": "Eine Nachricht", + "type_title": "Nachricht", + "version": "current", + "versioning_enabled": true, + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2018-07-19T16:18:17+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2018-07-19T16:19:14+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/11.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/11.json new file mode 100644 index 0000000..75ee757 --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/11.json @@ -0,0 +1,73 @@ +{ + "@id": "/de/demo/a-page", + "@type": "Document", + "UID": "fb91bddde7eb46efbed20e9c10fb4929", + "allow_discussion": false, + "blocks": {}, + "blocks_layout": { + "items": [] + }, + "changeNote": "", + "contributors": [], + "created": "2018-07-19T16:15:11+00:00", + "creators": [ + "admin" + ], + "description": "Aenean dictum auctor elit, in volutpat ipsum venenatis at. Quisque lobortis augue et enim venenatis interdum. In egestas, est at condimentum ultrices, tortor enim malesuada nulla; vel sagittis nullam.", + "effective": "2018-07-19T18:15:00", + "exclude_from_nav": false, + "expires": null, + "id": "a-page", + "is_folderish": false, + "language": "de", + "layout": "document_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2024-03-08T08:53:34+00:00", + "parent": { + "@id": "/de/demo", + "@type": "Folder", + "UID": "79f01c49712d47c0977f8c35b949af7a", + "description": "Vestibulum dignissim erat id eros mollis vitae tempus leo ultricies. Cras dapibus suscipit consectetur. Integer tincidunt feugiat tristique. Sed et arcu risus. Nam venenatis, tortor ac tincidunt amet.", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Demo", + "type_title": "Ordner" + }, + "review_state": "published", + "rights": null, + "subjects": [], + "table_of_contents": false, + "text": { + "content-type": "text/html", + "data": "

Fusce vel ante vel dolor feugiat vulputate? Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque luctus pretium tellus, id porttitor erat volutpat et. Donec vehicula accumsan ornare. Mauris quis vulputate dui. Duis convallis congue ornare. Vivamus cursus vestibulum neque at fermentum. Mauris sed velit in enim scelerisque luctus ac vel mauris. Etiam imperdiet tempor lorem, quis ultrices quam blandit ultricies. Ut sodales lacinia purus hendrerit lobortis. Pellentesque blandit; sem at aliquam pulvinar, felis diam tincidunt nisi, ac varius ligula eros eget tortor.

\r\n

Vivamus leo ipsum

\r\n

Dictum sed luctus elementum, ornare quis justo? Nam sagittis mattis turpis, eu varius sapien pulvinar non. Etiam in enim eget odio cursus condimentum! Nullam porta, quam ut sagittis auctor, dui urna ullamcorper urna, semper facilisis purus velit nec leo. Nam libero sem, auctor vitae pretium sit amet, posuere eget arcu.

\r\n

Maecenas ultrices

\r\n

Neque in porttitor scelerisque, nunc nunc semper libero, ac dapibus leo lectus et dui. Praesent sem urna, malesuada in volutpat ac, tincidunt sit amet dolor. Ut dignissim ante vel sem semper venenatis? Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. In hac habitasse platea dictumst. Aenean vitae lectus leo; non bibendum purus.

\r\n
    \r\n
  • Quisque sit amet aliquam elit
  • \r\n
  • Aenean odio urna, congue eu sollicitudin ac
  • \r\n
  • Interdum ac lorem
  • \r\n
  • Pellentesque habitant morbi tristique
  • \r\n
\r\n

Aliquam mattis purus vel nunc tempor sed tempus turpis imperdiet. Pellentesque tincidunt gravida eros at adipiscing. Sed ut tempus nibh. Suspendisse euismod, metus sed lobortis luctus, odio nulla malesuada turpis, in aliquam elit lorem id ante? Pellentesque a elementum dui! Morbi id tellus eget lacus sollicitudin dignissim. Praesent venenatis pellentesque dolor, nec vestibulum felis consectetur non? Sed facilisis, velit vel auctor aliquam, lorem mauris euismod libero, non pellentesque urna mauris vel sem. Aenean eget diam at sem auctor lacinia nec non nisl. Integer sodales fringilla vulputate. Duis massa ante, aliquet id interdum at; placerat nec magna. Ut eleifend sem ut mi elementum eget pellentesque urna dignissim!

", + "encoding": "utf-8" + }, + "title": "Eine Seite", + "type_title": "Seite", + "version": "current", + "versioning_enabled": true, + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2018-07-19T16:15:11+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2018-07-19T16:15:27+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/12.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/12.json new file mode 100644 index 0000000..67261a2 --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/12.json @@ -0,0 +1,93 @@ +{ + "@id": "/de/demo/ein-formular", + "@type": "EasyForm", + "CSRFProtection": true, + "UID": "76f47b0fbb6d49dd921cd0c6a4015fff", + "actions_model": "\n \n \n E-Mails Form Input\n replyto\n False\n topic\n Mailer\n \n \n Data\n \n \n", + "afterValidationOverride": null, + "allow_discussion": false, + "contributors": [], + "created": "2024-03-08T09:19:37+00:00", + "creators": [ + "admin" + ], + "default_fieldset_label": null, + "description": "", + "effective": "2024-03-08T10:19:00", + "exclude_from_nav": false, + "expires": null, + "fields_model": "\n \n \n \n Ihre Email\n \n \n \n False\n Nachricht\n \n \n \n False\n Auswahlfeld\n \n Black\n White\n Green\n Red\n Can I take my friend to bed?\n Pink\n Brown\n Yellow\n Orange\n And Blue\n I love you\n \n \n \n False\n Ich akzeptiere hiermit die Datenschutzerklärung.\n Datenschutz\n \n \n \n", + "forceSSL": false, + "formActionOverride": null, + "formEpilogue": null, + "formPrologue": { + "content-type": "text/html", + "data": "

Ein einfaches Testformular

", + "encoding": "utf-8" + }, + "form_tabbing": true, + "headerInjection": null, + "id": "ein-formular", + "includeEmpties": true, + "is_folderish": false, + "language": "de", + "layout": "view", + "lock": {}, + "method": "post", + "modified": "2024-03-08T11:28:08+00:00", + "nameAttribute": null, + "onDisplayOverride": null, + "parent": { + "@id": "/de/demo", + "@type": "Folder", + "UID": "79f01c49712d47c0977f8c35b949af7a", + "description": "Vestibulum dignissim erat id eros mollis vitae tempus leo ultricies. Cras dapibus suscipit consectetur. Integer tincidunt feugiat tristique. Sed et arcu risus. Nam venenatis, tortor ac tincidunt amet.", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Demo", + "type_title": "Ordner" + }, + "resetLabel": "Zur\u00fccksetzen", + "review_state": "published", + "rights": null, + "savedDataStorage": { + "data": {} + }, + "showAll": true, + "showFields": [], + "subjects": [], + "submitLabel": "Absenden", + "submitLabelOverride": null, + "thanksEpilogue": null, + "thanksPageOverride": null, + "thanksPageOverrideAction": "redirect_to", + "thanksPrologue": null, + "thanksdescription": "Danke f\u00fcr Ihren Beitrag.", + "thankstitle": "Vielen Dank", + "title": "Ein Formular", + "type_title": "EasyForm", + "unload_protection": true, + "useCancelButton": false, + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2024-03-08T09:19:37+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2024-03-08T09:19:41+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/13.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/13.json new file mode 100644 index 0000000..cebb7b8 --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/13.json @@ -0,0 +1,87 @@ +{ + "@id": "/de/demo/eine-kollektion", + "@type": "Collection", + "UID": "cd6271401a744e649e99afd5bb786bef", + "allow_discussion": false, + "contributors": [], + "created": "2022-04-02T14:14:32+00:00", + "creators": [ + "admin" + ], + "customViewFields": [ + "Title", + "Creator", + "Type", + "ModificationDate" + ], + "description": "Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Donec sed odio dui.", + "effective": "2022-04-02T16:15:00", + "exclude_from_nav": false, + "expires": null, + "id": "eine-kollektion", + "is_folderish": false, + "item_count": 30, + "items_total": 4, + "language": "de", + "layout": "tabular_view", + "limit": 1000, + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2024-03-08T08:53:34+00:00", + "parent": { + "@id": "/de/demo", + "@type": "Folder", + "UID": "79f01c49712d47c0977f8c35b949af7a", + "description": "Vestibulum dignissim erat id eros mollis vitae tempus leo ultricies. Cras dapibus suscipit consectetur. Integer tincidunt feugiat tristique. Sed et arcu risus. Nam venenatis, tortor ac tincidunt amet.", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Demo", + "type_title": "Ordner" + }, + "query": [ + { + "i": "portal_type", + "o": "plone.app.querystring.operation.selection.any", + "v": [ + "News Item", + "Document" + ] + } + ], + "review_state": "published", + "rights": null, + "sort_on": "modified", + "sort_reversed": true, + "subjects": [], + "text": { + "content-type": "text/html", + "data": "

Curabitur blandit tempus porttitor. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Nullam id dolor id nibh ultricies vehicula ut id elit. Etiam porta sem malesuada magna mollis euismod.

\r\n

Donec id elit non mi porta gravida at eget metus. Maecenas sed diam eget risus varius blandit sit amet non magna. Cras justo odio, dapibus ac facilisis in, egestas eget quam. Aenean lacinia bibendum nulla sed consectetur. Donec sed odio dui.

", + "encoding": "utf-8" + }, + "title": "Eine Kollektion", + "type_title": "Kollektion", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2022-04-02T14:14:32+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2022-04-02T14:15:29+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/14.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/14.json new file mode 100644 index 0000000..b7e440c --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/14.json @@ -0,0 +1,73 @@ +{ + "@id": "/de/frontpage", + "@type": "Document", + "UID": "4a843a854ce0465299c6acf1ee606462", + "allow_discussion": false, + "blocks": {}, + "blocks_layout": { + "items": [] + }, + "changeNote": "", + "contributors": [], + "created": "2024-03-08T08:53:34+00:00", + "creators": [ + "admin" + ], + "description": "Das ultimative Open Source Enterprise CMS", + "effective": null, + "exclude_from_nav": false, + "expires": null, + "id": "frontpage", + "is_folderish": false, + "language": "de", + "layout": "document_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2024-03-08T08:53:34+00:00", + "parent": { + "@id": "/de", + "@type": "LRF", + "UID": "1f58fedb9e2f49d688e920c912b85013", + "description": "", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Deutsch", + "type_title": "Basisordner einer Sprache" + }, + "review_state": "published", + "rights": "", + "subjects": [], + "table_of_contents": null, + "text": { + "content-type": "text/html", + "data": "

Bearbeiten Sie diese Seite und testen Sie Plone jetzt!

", + "encoding": "utf-8" + }, + "title": "Willkommen bei Plone", + "type_title": "Seite", + "version": "current", + "versioning_enabled": true, + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2024-03-08T08:53:34+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2024-03-08T08:53:34+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/15.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/15.json new file mode 100644 index 0000000..6d3a5b6 --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/15.json @@ -0,0 +1,55 @@ +{ + "@id": "/en", + "@type": "LRF", + "UID": "0ec57c1f5b104a59b034553ec00908ec", + "allow_discussion": false, + "contributors": [], + "created": "2024-03-08T08:53:33+00:00", + "creators": [ + "admin" + ], + "description": "", + "effective": null, + "exclude_from_nav": true, + "expires": null, + "id": "en", + "is_folderish": true, + "language": "en", + "layout": "folder_listing", + "lock": {}, + "modified": "2024-03-08T11:24:19+00:00", + "parent": { + "@id": "/", + "@type": "Plone Site", + "UID": "76010a4439cd48d3afbeec33ba81bbcd", + "description": "A Plone Site", + "title": "Site", + "type_title": "Website" + }, + "review_state": "published", + "rights": "", + "subjects": [], + "title": "English", + "type_title": "Basisordner einer Sprache", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2024-03-08T08:53:33+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2024-03-08T08:53:33+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/16.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/16.json new file mode 100644 index 0000000..2bf7fa2 --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/16.json @@ -0,0 +1,58 @@ +{ + "@id": "/en/assets", + "@type": "LIF", + "UID": "e082374ad260493a86c2c415569c3ad4", + "allow_discussion": false, + "contributors": [], + "created": "2024-03-08T08:53:33+00:00", + "creators": [ + "admin" + ], + "description": "", + "effective": null, + "exclude_from_nav": true, + "expires": null, + "id": "assets", + "is_folderish": true, + "language": "en", + "layout": "folder_listing", + "lock": {}, + "modified": "2024-03-08T08:53:33+00:00", + "parent": { + "@id": "/en", + "@type": "LRF", + "UID": "0ec57c1f5b104a59b034553ec00908ec", + "description": "", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "English", + "type_title": "Basisordner einer Sprache" + }, + "review_state": "published", + "rights": "", + "subjects": [], + "title": "Assets", + "type_title": "Sprachunabh\u00e4ngiger Ordner", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2024-03-08T08:53:33+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2024-03-08T08:53:33+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/17.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/17.json new file mode 100644 index 0000000..7ed8485 --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/17.json @@ -0,0 +1,59 @@ +{ + "@id": "/en/demo", + "@type": "Folder", + "UID": "9afb95a79cfa4c0684715027244e61e0", + "allow_discussion": false, + "contributors": [], + "created": "2018-07-19T16:31:18+00:00", + "creators": [ + "admin" + ], + "description": "Vestibulum dignissim erat id eros mollis vitae tempus leo ultricies. Cras dapibus suscipit consectetur. Integer tincidunt feugiat tristique. Sed et arcu risus. Nam venenatis, tortor ac tincidunt amet.", + "effective": "2018-07-19T18:31:00", + "exclude_from_nav": false, + "expires": null, + "id": "demo", + "is_folderish": true, + "language": "en", + "layout": "summary_view", + "lock": {}, + "modified": "2024-03-08T11:29:28+00:00", + "nextPreviousEnabled": false, + "parent": { + "@id": "/en", + "@type": "LRF", + "UID": "0ec57c1f5b104a59b034553ec00908ec", + "description": "", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "English", + "type_title": "Basisordner einer Sprache" + }, + "review_state": "published", + "rights": null, + "subjects": [], + "title": "Demo", + "type_title": "Ordner", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2018-07-19T16:31:18+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2018-07-19T16:31:44+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/18.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/18.json new file mode 100644 index 0000000..080de1a --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/18.json @@ -0,0 +1,87 @@ +{ + "@id": "/en/demo/a-collection", + "@type": "Collection", + "UID": "bfdc104dadc844cdb4a9412165dad82e", + "allow_discussion": false, + "contributors": [], + "created": "2022-04-02T14:20:31+00:00", + "creators": [ + "admin" + ], + "customViewFields": [ + "Title", + "Creator", + "Type", + "ModificationDate" + ], + "description": "Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Donec sed odio dui", + "effective": "2022-04-02T16:20:00", + "exclude_from_nav": false, + "expires": null, + "id": "a-collection", + "is_folderish": false, + "item_count": 30, + "items_total": 4, + "language": "en", + "layout": "tabular_view", + "limit": 1000, + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2024-03-08T08:53:34+00:00", + "parent": { + "@id": "/en/demo", + "@type": "Folder", + "UID": "9afb95a79cfa4c0684715027244e61e0", + "description": "Vestibulum dignissim erat id eros mollis vitae tempus leo ultricies. Cras dapibus suscipit consectetur. Integer tincidunt feugiat tristique. Sed et arcu risus. Nam venenatis, tortor ac tincidunt amet.", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Demo", + "type_title": "Ordner" + }, + "query": [ + { + "i": "portal_type", + "o": "plone.app.querystring.operation.selection.any", + "v": [ + "News Item", + "Document" + ] + } + ], + "review_state": "published", + "rights": null, + "sort_on": "modified", + "sort_reversed": true, + "subjects": [], + "text": { + "content-type": "text/html", + "data": "

Curabitur blandit tempus porttitor. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Nullam id dolor id nibh ultricies vehicula ut id elit. Etiam porta sem malesuada magna mollis euismod.

\r\n

Donec id elit non mi porta gravida at eget metus. Maecenas sed diam eget risus varius blandit sit amet non magna. Cras justo odio, dapibus ac facilisis in, egestas eget quam. Aenean lacinia bibendum nulla sed consectetur. Donec sed odio dui.

", + "encoding": "utf-8" + }, + "title": "A Collection", + "type_title": "Kollektion", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2022-04-02T14:20:31+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2022-04-02T14:20:33+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/19.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/19.json new file mode 100644 index 0000000..27302cb --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/19.json @@ -0,0 +1,59 @@ +{ + "@id": "/en/demo/a-folder", + "@type": "Folder", + "UID": "a07f9e78ee864e689d72fde066adbac3", + "allow_discussion": false, + "contributors": [], + "created": "2018-07-20T13:51:36+00:00", + "creators": [ + "admin" + ], + "description": "", + "effective": "2018-07-20T15:52:00", + "exclude_from_nav": false, + "expires": null, + "id": "a-folder", + "is_folderish": true, + "language": "en", + "layout": "listing_view", + "lock": {}, + "modified": "2024-03-08T11:24:18+00:00", + "nextPreviousEnabled": false, + "parent": { + "@id": "/en/demo", + "@type": "Folder", + "UID": "9afb95a79cfa4c0684715027244e61e0", + "description": "Vestibulum dignissim erat id eros mollis vitae tempus leo ultricies. Cras dapibus suscipit consectetur. Integer tincidunt feugiat tristique. Sed et arcu risus. Nam venenatis, tortor ac tincidunt amet.", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Demo", + "type_title": "Ordner" + }, + "review_state": "published", + "rights": null, + "subjects": [], + "title": "A Folder", + "type_title": "Ordner", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2018-07-20T13:51:36+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2018-07-20T13:52:13+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/2.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/2.json new file mode 100644 index 0000000..1d97c09 --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/2.json @@ -0,0 +1,55 @@ +{ + "@id": "/de", + "@type": "LRF", + "UID": "1f58fedb9e2f49d688e920c912b85013", + "allow_discussion": false, + "contributors": [], + "created": "2024-03-08T08:53:33+00:00", + "creators": [ + "admin" + ], + "description": "", + "effective": null, + "exclude_from_nav": true, + "expires": null, + "id": "de", + "is_folderish": true, + "language": "de", + "layout": "folder_listing", + "lock": {}, + "modified": "2024-03-08T11:24:19+00:00", + "parent": { + "@id": "/", + "@type": "Plone Site", + "UID": "76010a4439cd48d3afbeec33ba81bbcd", + "description": "A Plone Site", + "title": "Site", + "type_title": "Website" + }, + "review_state": "published", + "rights": "", + "subjects": [], + "title": "Deutsch", + "type_title": "Basisordner einer Sprache", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2024-03-08T08:53:33+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2024-03-08T08:53:33+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/20.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/20.json new file mode 100644 index 0000000..d019f08 --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/20.json @@ -0,0 +1,73 @@ +{ + "@id": "/en/demo/a-folder/a-page-inside-a-folder", + "@type": "Document", + "UID": "cdeb51770c5a4525abaa0493bb5780bb", + "allow_discussion": false, + "blocks": {}, + "blocks_layout": { + "items": [] + }, + "changeNote": "", + "contributors": [], + "created": "2018-07-20T13:52:55+00:00", + "creators": [ + "admin" + ], + "description": "Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.", + "effective": "2018-07-20T15:53:00", + "exclude_from_nav": false, + "expires": null, + "id": "a-page-inside-a-folder", + "is_folderish": false, + "language": "en", + "layout": "document_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2024-03-08T08:53:33+00:00", + "parent": { + "@id": "/en/demo/a-folder", + "@type": "Folder", + "UID": "a07f9e78ee864e689d72fde066adbac3", + "description": "", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "A Folder", + "type_title": "Ordner" + }, + "review_state": "published", + "rights": null, + "subjects": [], + "table_of_contents": false, + "text": { + "content-type": "text/html", + "data": "
\r\n
\r\n

Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Cras mattis consectetur purus sit amet fermentum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Cras justo odio, dapibus ac facilisis in, egestas eget quam. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Maecenas faucibus mollis interdum.

Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Nulla vitae elit libero, a pharetra augue. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. Vestibulum id ligula porta felis euismod semper. Cras mattis consectetur purus sit amet fermentum.

Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla vitae elit libero, a pharetra augue. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Morbi leo risus, porta ac consectetur ac, vestibulum at eros.

\r\n
\r\n
", + "encoding": "utf-8" + }, + "title": "A Page inside a Folder", + "type_title": "Seite", + "version": "current", + "versioning_enabled": true, + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2018-07-20T13:52:55+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2018-07-20T13:53:01+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/21.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/21.json new file mode 100644 index 0000000..f1c726a --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/21.json @@ -0,0 +1,86 @@ +{ + "@id": "/en/demo/a-form", + "@type": "EasyForm", + "CSRFProtection": true, + "UID": "998eb483577d4680973a69780841e8e1", + "actions_model": "\n>\n \n \n Mailer\n E-Mails Form Input\n replyto\n topic\n \n \n\n", + "afterValidationOverride": null, + "allow_discussion": false, + "contributors": [], + "created": "2024-03-08T11:29:28+00:00", + "creators": [ + "admin" + ], + "default_fieldset_label": null, + "description": "", + "effective": "2024-03-08T12:29:00", + "exclude_from_nav": false, + "expires": null, + "fields_model": "\n \n \n \n Your E-Mail Address\n \n \n \n Subject\n \n \n \n Comments\n \n \n\n", + "forceSSL": false, + "formActionOverride": null, + "formEpilogue": null, + "formPrologue": null, + "form_tabbing": true, + "headerInjection": null, + "id": "a-form", + "includeEmpties": true, + "is_folderish": false, + "language": "en", + "layout": "view", + "lock": {}, + "method": "post", + "modified": "2024-03-08T11:35:43+00:00", + "nameAttribute": null, + "onDisplayOverride": null, + "parent": { + "@id": "/en/demo", + "@type": "Folder", + "UID": "9afb95a79cfa4c0684715027244e61e0", + "description": "Vestibulum dignissim erat id eros mollis vitae tempus leo ultricies. Cras dapibus suscipit consectetur. Integer tincidunt feugiat tristique. Sed et arcu risus. Nam venenatis, tortor ac tincidunt amet.", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Demo", + "type_title": "Ordner" + }, + "resetLabel": "Reset", + "review_state": "published", + "rights": null, + "showAll": true, + "showFields": [], + "subjects": [], + "submitLabel": "Submit", + "submitLabelOverride": null, + "thanksEpilogue": null, + "thanksPageOverride": null, + "thanksPageOverrideAction": "redirect_to", + "thanksPrologue": null, + "thanksdescription": "Thanks for your input.", + "thankstitle": "Thank You", + "title": "A Form", + "type_title": "EasyForm", + "unload_protection": true, + "useCancelButton": false, + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2024-03-08T11:29:28+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2024-03-08T11:29:34+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/22.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/22.json new file mode 100644 index 0000000..c7df16c --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/22.json @@ -0,0 +1,61 @@ +{ + "@id": "/en/demo/a-link", + "@type": "Link", + "UID": "2ce50f00faf74ffb8e3db907e02f83fc", + "allow_discussion": false, + "changeNote": "", + "contributors": [], + "created": "2018-07-20T13:52:00+00:00", + "creators": [ + "admin" + ], + "description": "", + "effective": "2018-07-20T15:52:00", + "exclude_from_nav": false, + "expires": null, + "id": "a-link", + "is_folderish": false, + "language": "en", + "layout": "link_redirect_view", + "lock": {}, + "modified": "2024-03-08T08:53:34+00:00", + "parent": { + "@id": "/en/demo", + "@type": "Folder", + "UID": "9afb95a79cfa4c0684715027244e61e0", + "description": "Vestibulum dignissim erat id eros mollis vitae tempus leo ultricies. Cras dapibus suscipit consectetur. Integer tincidunt feugiat tristique. Sed et arcu risus. Nam venenatis, tortor ac tincidunt amet.", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Demo", + "type_title": "Ordner" + }, + "remoteUrl": "https://plone.com/", + "review_state": "published", + "rights": null, + "subjects": [], + "title": "A Link", + "type_title": "Link", + "version": "current", + "versioning_enabled": true, + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2018-07-20T13:52:00+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2018-07-20T13:52:06+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/23.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/23.json new file mode 100644 index 0000000..bf6b431 --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/23.json @@ -0,0 +1,77 @@ +{ + "@id": "/en/demo/a-news-item", + "@type": "News Item", + "UID": "4423a1b21c06425886e315c4d0e3a676", + "allow_discussion": false, + "changeNote": "", + "contributors": [], + "created": "2018-07-19T16:34:46+00:00", + "creators": [ + "admin" + ], + "description": "Aenean lacinia bibendum nulla sed consectetur. Cras mattis consectetur purus sit amet fermentum.", + "effective": "2018-07-19T18:34:00", + "exclude_from_nav": false, + "expires": null, + "id": "a-news-item", + "image": { + "blob_path": "blobs/4423a1b21c06425886e315c4d0e3a676-image/turner.jpg", + "content-type": "image/jpeg", + "filename": "turner.jpg", + "height": 1002, + "size": 862842, + "width": 1664 + }, + "image_caption": null, + "is_folderish": false, + "language": "en", + "layout": "newsitem_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2024-03-08T08:53:33+00:00", + "parent": { + "@id": "/en/demo", + "@type": "Folder", + "UID": "9afb95a79cfa4c0684715027244e61e0", + "description": "Vestibulum dignissim erat id eros mollis vitae tempus leo ultricies. Cras dapibus suscipit consectetur. Integer tincidunt feugiat tristique. Sed et arcu risus. Nam venenatis, tortor ac tincidunt amet.", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Demo", + "type_title": "Ordner" + }, + "review_state": "published", + "rights": null, + "subjects": [], + "text": { + "content-type": "text/html", + "data": "

Donec sed odio dui. Etiam porta sem malesuada magna mollis euismod. Aenean lacinia bibendum nulla sed consectetur. Cras justo odio, dapibus ac facilisis in, egestas eget quam. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec id elit non mi porta gravida at eget metus.

\r\n

Curabitur blandit tempus porttitor.

\r\n

Curabitur blandit tempus porttitor. Donec id elit non mi porta gravida at eget metus. Etiam porta sem malesuada magna mollis euismod. Maecenas sed diam eget risus varius blandit sit amet non magna.

Aenean lacinia bibendum nulla sed consectetur. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Aenean lacinia bibendum nulla sed consectetur. Sed posuere consectetur est at lobortis.

", + "encoding": "utf-8" + }, + "title": "A News Item", + "type_title": "Nachricht", + "version": "current", + "versioning_enabled": true, + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2018-07-19T16:34:46+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2018-07-19T16:34:52+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/24.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/24.json new file mode 100644 index 0000000..8b387ae --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/24.json @@ -0,0 +1,73 @@ +{ + "@id": "/en/demo/a-page", + "@type": "Document", + "UID": "5c380e40de1f424b92e9a220467f078c", + "allow_discussion": false, + "blocks": {}, + "blocks_layout": { + "items": [] + }, + "changeNote": "", + "contributors": [], + "created": "2018-07-19T16:32:10+00:00", + "creators": [ + "admin" + ], + "description": "Aenean dictum auctor elit, in volutpat ipsum venenatis at. Quisque lobortis augue et enim venenatis interdum. In egestas, est at condimentum ultrices, tortor enim malesuada nulla; vel sagittis nullam.", + "effective": "2018-07-19T18:32:00", + "exclude_from_nav": false, + "expires": null, + "id": "a-page", + "is_folderish": false, + "language": "en", + "layout": "document_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2024-03-08T08:53:33+00:00", + "parent": { + "@id": "/en/demo", + "@type": "Folder", + "UID": "9afb95a79cfa4c0684715027244e61e0", + "description": "Vestibulum dignissim erat id eros mollis vitae tempus leo ultricies. Cras dapibus suscipit consectetur. Integer tincidunt feugiat tristique. Sed et arcu risus. Nam venenatis, tortor ac tincidunt amet.", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Demo", + "type_title": "Ordner" + }, + "review_state": "published", + "rights": null, + "subjects": [], + "table_of_contents": false, + "text": { + "content-type": "text/html", + "data": "

Fusce vel ante vel dolor feugiat vulputate? Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque luctus pretium tellus, id porttitor erat volutpat et. Donec vehicula accumsan ornare. Mauris quis vulputate dui. Duis convallis congue ornare. Vivamus cursus vestibulum neque at fermentum. Mauris sed velit in enim scelerisque luctus ac vel mauris. Etiam imperdiet tempor lorem, quis ultrices quam blandit ultricies. Ut sodales lacinia purus hendrerit lobortis. Pellentesque blandit; sem at aliquam pulvinar, felis diam tincidunt nisi, ac varius ligula eros eget tortor.

\r\n

Vivamus leo ipsum

\r\n

Dictum sed luctus elementum, ornare quis justo? Nam sagittis mattis turpis, eu varius sapien pulvinar non. Etiam in enim eget odio cursus condimentum! Nullam porta, quam ut sagittis auctor, dui urna ullamcorper urna, semper facilisis purus velit nec leo. Nam libero sem, auctor vitae pretium sit amet, posuere eget arcu.

\r\n

Maecenas ultrices

\r\n

Neque in porttitor scelerisque, nunc nunc semper libero, ac dapibus leo lectus et dui. Praesent sem urna, malesuada in volutpat ac, tincidunt sit amet dolor. Ut dignissim ante vel sem semper venenatis? Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. In hac habitasse platea dictumst. Aenean vitae lectus leo; non bibendum purus.

\r\n
    \r\n
  • Quisque sit amet aliquam elit
  • \r\n
  • Aenean odio urna, congue eu sollicitudin ac
  • \r\n
  • Interdum ac lorem
  • \r\n
  • Pellentesque habitant morbi tristique
  • \r\n
\r\n

Aliquam mattis purus vel nunc tempor sed tempus turpis imperdiet. Pellentesque tincidunt gravida eros at adipiscing. Sed ut tempus nibh. Suspendisse euismod, metus sed lobortis luctus, odio nulla malesuada turpis, in aliquam elit lorem id ante? Pellentesque a elementum dui! Morbi id tellus eget lacus sollicitudin dignissim. Praesent venenatis pellentesque dolor, nec vestibulum felis consectetur non? Sed facilisis, velit vel auctor aliquam, lorem mauris euismod libero, non pellentesque urna mauris vel sem. Aenean eget diam at sem auctor lacinia nec non nisl. Integer sodales fringilla vulputate. Duis massa ante, aliquet id interdum at; placerat nec magna. Ut eleifend sem ut mi elementum eget pellentesque urna dignissim!

", + "encoding": "utf-8" + }, + "title": "A Page", + "type_title": "Seite", + "version": "current", + "versioning_enabled": true, + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2018-07-19T16:32:10+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2018-07-19T16:32:19+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/25.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/25.json new file mode 100644 index 0000000..d7a58e8 --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/25.json @@ -0,0 +1,82 @@ +{ + "@id": "/en/demo/an-event", + "@type": "Event", + "UID": "cfb30b644a9c4886b4950a7e708e0cbb", + "allow_discussion": false, + "attendees": [ + "Plone Community" + ], + "changeNote": "", + "contact_email": null, + "contact_name": null, + "contact_phone": null, + "contributors": [], + "created": "2018-07-19T16:33:34+00:00", + "creators": [ + "admin" + ], + "description": "Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Maecenas sed diam eget risus varius blandit sit amet non magna.", + "effective": "2018-07-19T18:33:00", + "end": "2024-10-05T22:00:00+00:00", + "event_url": "http://ploneconf.org/", + "exclude_from_nav": false, + "expires": null, + "id": "an-event", + "is_folderish": false, + "language": "en", + "layout": "event_view", + "location": "Planet Earth", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2024-03-08T08:53:33+00:00", + "open_end": false, + "parent": { + "@id": "/en/demo", + "@type": "Folder", + "UID": "9afb95a79cfa4c0684715027244e61e0", + "description": "Vestibulum dignissim erat id eros mollis vitae tempus leo ultricies. Cras dapibus suscipit consectetur. Integer tincidunt feugiat tristique. Sed et arcu risus. Nam venenatis, tortor ac tincidunt amet.", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Demo", + "type_title": "Ordner" + }, + "recurrence": null, + "review_state": "published", + "rights": null, + "start": "2024-09-29T22:00:00+00:00", + "subjects": [], + "sync_uid": null, + "text": { + "content-type": "text/html", + "data": "

Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Donec id elit non mi porta gravida at eget metus. Donec id elit non mi porta gravida at eget metus. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ullamcorper nulla non metus auctor fringilla. Cras justo odio, dapibus ac facilisis in, egestas eget quam. Morbi leo risus, porta ac consectetur ac, vestibulum at eros.

", + "encoding": "utf-8" + }, + "title": "An Event", + "type_title": "Termin", + "version": "current", + "versioning_enabled": true, + "whole_day": true, + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2018-07-19T16:33:34+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2018-07-19T16:33:42+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/26.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/26.json new file mode 100644 index 0000000..d1c669e --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/26.json @@ -0,0 +1,48 @@ +{ + "@id": "/en/demo/an-image.jpg", + "@type": "Image", + "UID": "d5a10ad499c34d699049d8027c25e4ca", + "allow_discussion": false, + "contributors": [], + "created": "2018-07-20T13:51:49+00:00", + "creators": [ + "admin" + ], + "description": null, + "effective": null, + "exclude_from_nav": false, + "expires": null, + "id": "an-image.jpg", + "image": { + "blob_path": "blobs/d5a10ad499c34d699049d8027c25e4ca-image/paris.jpg", + "content-type": "image/jpeg", + "filename": "paris.jpg", + "height": 755, + "size": 431326, + "width": 1664 + }, + "is_folderish": false, + "language": "en", + "layout": "image_view", + "lock": {}, + "modified": "2024-03-08T08:53:34+00:00", + "parent": { + "@id": "/en/demo", + "@type": "Folder", + "UID": "9afb95a79cfa4c0684715027244e61e0", + "description": "Vestibulum dignissim erat id eros mollis vitae tempus leo ultricies. Cras dapibus suscipit consectetur. Integer tincidunt feugiat tristique. Sed et arcu risus. Nam venenatis, tortor ac tincidunt amet.", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Demo", + "type_title": "Ordner" + }, + "review_state": null, + "rights": null, + "subjects": [], + "title": "An Image", + "type_title": "Bild", + "version": "current", + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/27.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/27.json new file mode 100644 index 0000000..7dad92a --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/27.json @@ -0,0 +1,73 @@ +{ + "@id": "/en/frontpage", + "@type": "Document", + "UID": "e40c713df9f1414b8c7fc0e190006a51", + "allow_discussion": false, + "blocks": {}, + "blocks_layout": { + "items": [] + }, + "changeNote": "", + "contributors": [], + "created": "2024-03-08T08:53:33+00:00", + "creators": [ + "admin" + ], + "description": "The ultimate Open Source Enterprise CMS", + "effective": null, + "exclude_from_nav": false, + "expires": null, + "id": "frontpage", + "is_folderish": false, + "language": "en", + "layout": "document_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2024-03-08T08:53:33+00:00", + "parent": { + "@id": "/en", + "@type": "LRF", + "UID": "0ec57c1f5b104a59b034553ec00908ec", + "description": "", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "English", + "type_title": "Basisordner einer Sprache" + }, + "review_state": "published", + "rights": "", + "subjects": [], + "table_of_contents": null, + "text": { + "content-type": "text/html", + "data": "

Edit this site and test Plone now!

", + "encoding": "utf-8" + }, + "title": "Welcome to Plone", + "type_title": "Seite", + "version": "current", + "versioning_enabled": true, + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2024-03-08T08:53:33+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2024-03-08T08:53:33+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/28.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/28.json new file mode 100644 index 0000000..091442f --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/28.json @@ -0,0 +1,55 @@ +{ + "@id": "/es", + "@type": "LRF", + "UID": "d066fc6505ca4ace9df8402aa8cad8df", + "allow_discussion": false, + "contributors": [], + "created": "2024-03-08T08:53:33+00:00", + "creators": [ + "admin" + ], + "description": "", + "effective": null, + "exclude_from_nav": true, + "expires": null, + "id": "es", + "is_folderish": true, + "language": "es", + "layout": "folder_listing", + "lock": {}, + "modified": "2024-03-08T11:24:19+00:00", + "parent": { + "@id": "/", + "@type": "Plone Site", + "UID": "76010a4439cd48d3afbeec33ba81bbcd", + "description": "A Plone Site", + "title": "Site", + "type_title": "Website" + }, + "review_state": "published", + "rights": "", + "subjects": [], + "title": "Espa\u00f1ol", + "type_title": "Basisordner einer Sprache", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2024-03-08T08:53:33+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2024-03-08T08:53:33+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/29.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/29.json new file mode 100644 index 0000000..d58b4b5 --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/29.json @@ -0,0 +1,59 @@ +{ + "@id": "/es/demo", + "@type": "Folder", + "UID": "353551eee36e491e89bc097f17f05e59", + "allow_discussion": false, + "contributors": [], + "created": "2018-08-27T11:12:01+00:00", + "creators": [ + "admin" + ], + "description": "Vestibulum dignissim erat id eros mollis vitae tempus leo ultricies. Cras dapibus suscipit consectetur. Integer tincidunt feugiat tristique. Sed et arcu risus. Nam venenatis, tortor ac tincidunt amet.", + "effective": "2018-08-27T13:16:00", + "exclude_from_nav": false, + "expires": null, + "id": "demo", + "is_folderish": true, + "language": "es", + "layout": "listing_view", + "lock": {}, + "modified": "2024-03-08T11:32:35+00:00", + "nextPreviousEnabled": false, + "parent": { + "@id": "/es", + "@type": "LRF", + "UID": "d066fc6505ca4ace9df8402aa8cad8df", + "description": "", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Espa\u00f1ol", + "type_title": "Basisordner einer Sprache" + }, + "review_state": "published", + "rights": null, + "subjects": [], + "title": "Demo", + "type_title": "Ordner", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2018-08-27T11:12:01+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2018-08-27T11:16:38+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/3.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/3.json new file mode 100644 index 0000000..24e838e --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/3.json @@ -0,0 +1,58 @@ +{ + "@id": "/de/assets", + "@type": "LIF", + "UID": "1d0d324e341f4cb4859acf541780a4c9", + "allow_discussion": false, + "contributors": [], + "created": "2024-03-08T08:53:33+00:00", + "creators": [ + "admin" + ], + "description": "", + "effective": null, + "exclude_from_nav": true, + "expires": null, + "id": "assets", + "is_folderish": true, + "language": "de", + "layout": "folder_listing", + "lock": {}, + "modified": "2024-03-08T08:53:33+00:00", + "parent": { + "@id": "/de", + "@type": "LRF", + "UID": "1f58fedb9e2f49d688e920c912b85013", + "description": "", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Deutsch", + "type_title": "Basisordner einer Sprache" + }, + "review_state": "published", + "rights": "", + "subjects": [], + "title": "Assets", + "type_title": "Sprachunabh\u00e4ngiger Ordner", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2024-03-08T08:53:33+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2024-03-08T08:53:33+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/30.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/30.json new file mode 100644 index 0000000..fa793d8 --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/30.json @@ -0,0 +1,48 @@ +{ + "@id": "/es/demo/q6.jpg", + "@type": "Image", + "UID": "8b9931d15212461685e4f23483aed815", + "allow_discussion": false, + "contributors": [], + "created": "2018-08-27T11:23:16+00:00", + "creators": [ + "admin" + ], + "description": null, + "effective": null, + "exclude_from_nav": false, + "expires": null, + "id": "q6.jpg", + "image": { + "blob_path": "blobs/8b9931d15212461685e4f23483aed815-image/paris.jpg", + "content-type": "image/jpeg", + "filename": "paris.jpg", + "height": 755, + "size": 431326, + "width": 1664 + }, + "is_folderish": false, + "language": "es", + "layout": "image_view", + "lock": {}, + "modified": "2024-03-08T08:53:34+00:00", + "parent": { + "@id": "/es/demo", + "@type": "Folder", + "UID": "353551eee36e491e89bc097f17f05e59", + "description": "Vestibulum dignissim erat id eros mollis vitae tempus leo ultricies. Cras dapibus suscipit consectetur. Integer tincidunt feugiat tristique. Sed et arcu risus. Nam venenatis, tortor ac tincidunt amet.", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Demo", + "type_title": "Ordner" + }, + "review_state": null, + "rights": null, + "subjects": [], + "title": "Una imagen", + "type_title": "Bild", + "version": "current", + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/31.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/31.json new file mode 100644 index 0000000..5074b21 --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/31.json @@ -0,0 +1,61 @@ +{ + "@id": "/es/demo/un-enlace", + "@type": "Link", + "UID": "ae9d4c02a78b487fb74be8fde688e773", + "allow_discussion": false, + "changeNote": "", + "contributors": [], + "created": "2018-08-27T11:22:37+00:00", + "creators": [ + "admin" + ], + "description": "", + "effective": "2018-08-27T13:22:00", + "exclude_from_nav": false, + "expires": null, + "id": "un-enlace", + "is_folderish": false, + "language": "es", + "layout": "link_redirect_view", + "lock": {}, + "modified": "2024-03-08T08:53:34+00:00", + "parent": { + "@id": "/es/demo", + "@type": "Folder", + "UID": "353551eee36e491e89bc097f17f05e59", + "description": "Vestibulum dignissim erat id eros mollis vitae tempus leo ultricies. Cras dapibus suscipit consectetur. Integer tincidunt feugiat tristique. Sed et arcu risus. Nam venenatis, tortor ac tincidunt amet.", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Demo", + "type_title": "Ordner" + }, + "remoteUrl": "https://plone.com", + "review_state": "published", + "rights": null, + "subjects": [], + "title": "Un enlace", + "type_title": "Link", + "version": "current", + "versioning_enabled": true, + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2018-08-27T11:22:37+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2018-08-27T11:22:42+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/32.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/32.json new file mode 100644 index 0000000..c352c13 --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/32.json @@ -0,0 +1,82 @@ +{ + "@id": "/es/demo/un-evento", + "@type": "Event", + "UID": "fb46a1a5e28248c9befe9b5a696d52b4", + "allow_discussion": false, + "attendees": [ + "Plone Community" + ], + "changeNote": "", + "contact_email": null, + "contact_name": null, + "contact_phone": null, + "contributors": [], + "created": "2018-08-27T11:17:32+00:00", + "creators": [ + "admin" + ], + "description": "Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Maecenas sed diam eget risus varius blandit sit amet non magna.", + "effective": "2018-08-27T13:17:00", + "end": "2024-10-05T22:00:00+00:00", + "event_url": "http://ploneconf.org/", + "exclude_from_nav": false, + "expires": null, + "id": "un-evento", + "is_folderish": false, + "language": "es", + "layout": "event_view", + "location": "Planeta Tierra", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2024-03-08T08:53:34+00:00", + "open_end": false, + "parent": { + "@id": "/es/demo", + "@type": "Folder", + "UID": "353551eee36e491e89bc097f17f05e59", + "description": "Vestibulum dignissim erat id eros mollis vitae tempus leo ultricies. Cras dapibus suscipit consectetur. Integer tincidunt feugiat tristique. Sed et arcu risus. Nam venenatis, tortor ac tincidunt amet.", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Demo", + "type_title": "Ordner" + }, + "recurrence": null, + "review_state": "published", + "rights": null, + "start": "2024-09-29T22:00:00+00:00", + "subjects": [], + "sync_uid": null, + "text": { + "content-type": "text/html", + "data": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Donec id elit non mi porta gravida at eget metus. Donec id elit non mi porta gravida at eget metus. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ullamcorper nulla non metus auctor fringilla. Cras justo odio, dapibus ac facilisis in, egestas eget quam. Morbi leo risus, porta ac consectetur ac, vestibulum at eros.", + "encoding": "utf-8" + }, + "title": "Un Evento", + "type_title": "Termin", + "version": "current", + "versioning_enabled": true, + "whole_day": true, + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2018-08-27T11:17:33+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2018-08-27T11:17:39+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/33.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/33.json new file mode 100644 index 0000000..c438b81 --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/33.json @@ -0,0 +1,86 @@ +{ + "@id": "/es/demo/un-formulario", + "@type": "EasyForm", + "CSRFProtection": true, + "UID": "aa6c61a2c130419ea55d57d2d4383dc8", + "actions_model": "\n>\n \n \n Mailer\n E-Mails Form Input\n replyto\n topic\n \n \n\n", + "afterValidationOverride": null, + "allow_discussion": false, + "contributors": [], + "created": "2024-03-08T11:32:35+00:00", + "creators": [ + "admin" + ], + "default_fieldset_label": null, + "description": "", + "effective": "2024-03-08T12:32:38", + "exclude_from_nav": false, + "expires": null, + "fields_model": "\n \n \n \n Your E-Mail Address\n \n \n \n Subject\n \n \n \n Comments\n \n \n\n", + "forceSSL": false, + "formActionOverride": null, + "formEpilogue": null, + "formPrologue": null, + "form_tabbing": true, + "headerInjection": null, + "id": "un-formulario", + "includeEmpties": true, + "is_folderish": false, + "language": "es", + "layout": "view", + "lock": {}, + "method": "post", + "modified": "2024-03-08T11:32:38+00:00", + "nameAttribute": null, + "onDisplayOverride": null, + "parent": { + "@id": "/es/demo", + "@type": "Folder", + "UID": "353551eee36e491e89bc097f17f05e59", + "description": "Vestibulum dignissim erat id eros mollis vitae tempus leo ultricies. Cras dapibus suscipit consectetur. Integer tincidunt feugiat tristique. Sed et arcu risus. Nam venenatis, tortor ac tincidunt amet.", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Demo", + "type_title": "Ordner" + }, + "resetLabel": "Limpiar", + "review_state": "published", + "rights": null, + "showAll": true, + "showFields": [], + "subjects": [], + "submitLabel": "Enviar", + "submitLabelOverride": null, + "thanksEpilogue": null, + "thanksPageOverride": null, + "thanksPageOverrideAction": "redirect_to", + "thanksPrologue": null, + "thanksdescription": "Gracias por su env\u00edo", + "thankstitle": "Gracias", + "title": "Un formulario", + "type_title": "EasyForm", + "unload_protection": true, + "useCancelButton": false, + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2024-03-08T11:32:35+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2024-03-08T11:32:38+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/34.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/34.json new file mode 100644 index 0000000..b17592a --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/34.json @@ -0,0 +1,59 @@ +{ + "@id": "/es/demo/una-carpeta", + "@type": "Folder", + "UID": "bd5ff3d542bc42f79d2eab0b99c1ec9d", + "allow_discussion": false, + "contributors": [], + "created": "2018-08-27T11:20:07+00:00", + "creators": [ + "admin" + ], + "description": "", + "effective": "2018-08-27T13:20:00", + "exclude_from_nav": false, + "expires": null, + "id": "una-carpeta", + "is_folderish": true, + "language": "es", + "layout": "listing_view", + "lock": {}, + "modified": "2024-03-08T11:24:18+00:00", + "nextPreviousEnabled": false, + "parent": { + "@id": "/es/demo", + "@type": "Folder", + "UID": "353551eee36e491e89bc097f17f05e59", + "description": "Vestibulum dignissim erat id eros mollis vitae tempus leo ultricies. Cras dapibus suscipit consectetur. Integer tincidunt feugiat tristique. Sed et arcu risus. Nam venenatis, tortor ac tincidunt amet.", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Demo", + "type_title": "Ordner" + }, + "review_state": "published", + "rights": null, + "subjects": [], + "title": "Una carpeta", + "type_title": "Ordner", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2018-08-27T11:20:07+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2018-08-27T11:20:13+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/35.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/35.json new file mode 100644 index 0000000..108d322 --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/35.json @@ -0,0 +1,73 @@ +{ + "@id": "/es/demo/una-carpeta/una-pagina-dentro-de-una-carpeta", + "@type": "Document", + "UID": "593cf5489fce493a95b59bb4f3ef9ee1", + "allow_discussion": false, + "blocks": {}, + "blocks_layout": { + "items": [] + }, + "changeNote": "", + "contributors": [], + "created": "2018-08-27T11:20:58+00:00", + "creators": [ + "admin" + ], + "description": "Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.", + "effective": "2018-08-27T13:21:00", + "exclude_from_nav": false, + "expires": null, + "id": "una-pagina-dentro-de-una-carpeta", + "is_folderish": false, + "language": "es", + "layout": "document_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2024-03-08T08:53:34+00:00", + "parent": { + "@id": "/es/demo/una-carpeta", + "@type": "Folder", + "UID": "bd5ff3d542bc42f79d2eab0b99c1ec9d", + "description": "", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Una carpeta", + "type_title": "Ordner" + }, + "review_state": "published", + "rights": null, + "subjects": [], + "table_of_contents": false, + "text": { + "content-type": "text/html", + "data": "Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Cras mattis consectetur purus sit amet fermentum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Cras justo odio, dapibus ac facilisis in, egestas eget quam. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Maecenas faucibus mollis interdum.\r\n\r\nPraesent commodo cursus magna, vel scelerisque nisl consectetur et. Nulla vitae elit libero, a pharetra augue. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. Vestibulum id ligula porta felis euismod semper. Cras mattis consectetur purus sit amet fermentum.\r\n\r\nNullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla vitae elit libero, a pharetra augue. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Morbi leo risus, porta ac consectetur ac, vestibulum at eros.", + "encoding": "utf-8" + }, + "title": "Una P\u00e1gina dentro de una carpeta", + "type_title": "Seite", + "version": "current", + "versioning_enabled": true, + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2018-08-27T11:20:58+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2018-08-27T11:21:10+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/36.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/36.json new file mode 100644 index 0000000..7212d1b --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/36.json @@ -0,0 +1,87 @@ +{ + "@id": "/es/demo/una-coleccion", + "@type": "Collection", + "UID": "0a600821c535433c974b2e706fabd704", + "allow_discussion": false, + "contributors": [], + "created": "2022-04-02T14:22:11+00:00", + "creators": [ + "admin" + ], + "customViewFields": [ + "Title", + "Creator", + "Type", + "ModificationDate" + ], + "description": "Nulla vitae elit libero, a pharetra augue. Donec ullamcorper nulla non metus auctor fringilla.", + "effective": "2022-04-02T16:22:00", + "exclude_from_nav": false, + "expires": null, + "id": "una-coleccion", + "is_folderish": false, + "item_count": 30, + "items_total": 4, + "language": "es", + "layout": "tabular_view", + "limit": 1000, + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2024-03-08T08:53:34+00:00", + "parent": { + "@id": "/es/demo", + "@type": "Folder", + "UID": "353551eee36e491e89bc097f17f05e59", + "description": "Vestibulum dignissim erat id eros mollis vitae tempus leo ultricies. Cras dapibus suscipit consectetur. Integer tincidunt feugiat tristique. Sed et arcu risus. Nam venenatis, tortor ac tincidunt amet.", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Demo", + "type_title": "Ordner" + }, + "query": [ + { + "i": "portal_type", + "o": "plone.app.querystring.operation.selection.any", + "v": [ + "News Item", + "Document" + ] + } + ], + "review_state": "published", + "rights": null, + "sort_on": "modified", + "sort_reversed": true, + "subjects": [], + "text": { + "content-type": "text/html", + "data": "

Curabitur blandit tempus porttitor. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.

\r\n

Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Maecenas sed diam eget risus varius blandit sit amet non magna. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Maecenas sed diam eget risus varius blandit sit amet non magna. Vestibulum id ligula porta felis euismod semper.

", + "encoding": "utf-8" + }, + "title": "Una Colecci\u00f3n", + "type_title": "Kollektion", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2022-04-02T14:22:11+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2022-04-02T14:22:14+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/37.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/37.json new file mode 100644 index 0000000..83607a4 --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/37.json @@ -0,0 +1,77 @@ +{ + "@id": "/es/demo/una-noticia", + "@type": "News Item", + "UID": "1be0093b8c624ade89eba7329f8d6947", + "allow_discussion": false, + "changeNote": "", + "contributors": [], + "created": "2018-08-27T11:19:32+00:00", + "creators": [ + "admin" + ], + "description": "Aenean lacinia bibendum nulla sed consectetur. Cras mattis consectetur purus sit amet fermentum.", + "effective": "2018-08-27T13:19:00", + "exclude_from_nav": false, + "expires": null, + "id": "una-noticia", + "image": { + "blob_path": "blobs/1be0093b8c624ade89eba7329f8d6947-image/turner.jpg", + "content-type": "image/jpeg", + "filename": "turner.jpg", + "height": 1002, + "size": 862842, + "width": 1664 + }, + "image_caption": null, + "is_folderish": false, + "language": "es", + "layout": "newsitem_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2024-03-08T08:53:34+00:00", + "parent": { + "@id": "/es/demo", + "@type": "Folder", + "UID": "353551eee36e491e89bc097f17f05e59", + "description": "Vestibulum dignissim erat id eros mollis vitae tempus leo ultricies. Cras dapibus suscipit consectetur. Integer tincidunt feugiat tristique. Sed et arcu risus. Nam venenatis, tortor ac tincidunt amet.", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Demo", + "type_title": "Ordner" + }, + "review_state": "published", + "rights": null, + "subjects": [], + "text": { + "content-type": "text/html", + "data": "

Donec sed odio dui. Etiam porta sem malesuada magna mollis euismod. Aenean lacinia bibendum nulla sed consectetur. Cras justo odio, dapibus ac facilisis in, egestas eget quam. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec id elit non mi porta gravida at eget metus.

\r\n

Curabitur blandit tempus porttitor.

\r\n

Curabitur blandit tempus porttitor. Donec id elit non mi porta gravida at eget metus. Etiam porta sem malesuada magna mollis euismod. Maecenas sed diam eget risus varius blandit sit amet non magna.

Aenean lacinia bibendum nulla sed consectetur. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Aenean lacinia bibendum nulla sed consectetur. Sed posuere consectetur est at lobortis.

", + "encoding": "utf-8" + }, + "title": "Una noticia", + "type_title": "Nachricht", + "version": "current", + "versioning_enabled": true, + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2018-08-27T11:19:32+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2018-08-27T11:19:42+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/38.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/38.json new file mode 100644 index 0000000..fcde6e6 --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/38.json @@ -0,0 +1,73 @@ +{ + "@id": "/es/demo/una-pagina", + "@type": "Document", + "UID": "13f909b522a94443823e187ea9ebab0b", + "allow_discussion": false, + "blocks": {}, + "blocks_layout": { + "items": [] + }, + "changeNote": "", + "contributors": [], + "created": "2018-08-27T11:12:41+00:00", + "creators": [ + "admin" + ], + "description": "Aenean dictum auctor elit, in volutpat ipsum venenatis at. Quisque lobortis augue et enim venenatis interdum. In egestas, est at condimentum ultrices, tortor enim malesuada nulla; vel sagittis nullam.", + "effective": "2018-08-27T13:16:00", + "exclude_from_nav": false, + "expires": null, + "id": "una-pagina", + "is_folderish": false, + "language": "es", + "layout": "document_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2024-03-08T08:53:34+00:00", + "parent": { + "@id": "/es/demo", + "@type": "Folder", + "UID": "353551eee36e491e89bc097f17f05e59", + "description": "Vestibulum dignissim erat id eros mollis vitae tempus leo ultricies. Cras dapibus suscipit consectetur. Integer tincidunt feugiat tristique. Sed et arcu risus. Nam venenatis, tortor ac tincidunt amet.", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Demo", + "type_title": "Ordner" + }, + "review_state": "published", + "rights": null, + "subjects": [], + "table_of_contents": false, + "text": { + "content-type": "text/html", + "data": "Fusce vel ante vel dolor feugiat vulputate? Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque luctus pretium tellus, id porttitor erat volutpat et. Donec vehicula accumsan ornare. Mauris quis vulputate dui. Duis convallis congue ornare. Vivamus cursus vestibulum neque at fermentum. Mauris sed velit in enim scelerisque luctus ac vel mauris. Etiam imperdiet tempor lorem, quis ultrices quam blandit ultricies. Ut sodales lacinia purus hendrerit lobortis. Pellentesque blandit; sem at aliquam pulvinar, felis diam tincidunt nisi, ac varius ligula eros eget tortor.\r\n\r\nVivamus leo ipsum\r\nDictum sed luctus elementum, ornare quis justo? Nam sagittis mattis turpis, eu varius sapien pulvinar non. Etiam in enim eget odio cursus condimentum! Nullam porta, quam ut sagittis auctor, dui urna ullamcorper urna, semper facilisis purus velit nec leo. Nam libero sem, auctor vitae pretium sit amet, posuere eget arcu.\r\n\r\nMaecenas ultrices\r\nNeque in porttitor scelerisque, nunc nunc semper libero, ac dapibus leo lectus et dui. Praesent sem urna, malesuada in volutpat ac, tincidunt sit amet dolor. Ut dignissim ante vel sem semper venenatis? Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. In hac habitasse platea dictumst. Aenean vitae lectus leo; non bibendum purus.\r\n\r\nQuisque sit amet aliquam elit\r\nAenean odio urna, congue eu sollicitudin ac\r\nInterdum ac lorem\r\nPellentesque habitant morbi tristique\r\nAliquam mattis purus vel nunc tempor sed tempus turpis imperdiet. Pellentesque tincidunt gravida eros at adipiscing. Sed ut tempus nibh. Suspendisse euismod, metus sed lobortis luctus, odio nulla malesuada turpis, in aliquam elit lorem id ante? Pellentesque a elementum dui! Morbi id tellus eget lacus sollicitudin dignissim. Praesent venenatis pellentesque dolor, nec vestibulum felis consectetur non? Sed facilisis, velit vel auctor aliquam, lorem mauris euismod libero, non pellentesque urna mauris vel sem. Aenean eget diam at sem auctor lacinia nec non nisl. Integer sodales fringilla vulputate. Duis massa ante, aliquet id interdum at; placerat nec magna. Ut eleifend sem ut mi elementum eget pellentesque urna dignissim!", + "encoding": "utf-8" + }, + "title": "Una p\u00e1gina", + "type_title": "Seite", + "version": "current", + "versioning_enabled": true, + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2018-08-27T11:12:41+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2018-08-27T11:16:46+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/39.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/39.json new file mode 100644 index 0000000..f0a7684 --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/39.json @@ -0,0 +1,73 @@ +{ + "@id": "/es/frontpage", + "@type": "Document", + "UID": "fc2b43f7bbe04bec886ecd8dd287ca5e", + "allow_discussion": false, + "blocks": {}, + "blocks_layout": { + "items": [] + }, + "changeNote": "", + "contributors": [], + "created": "2024-03-08T08:53:34+00:00", + "creators": [ + "admin" + ], + "description": "El Sistema de Gesti\u00f3n de Contenido de Fuentes Abiertas", + "effective": null, + "exclude_from_nav": false, + "expires": null, + "id": "frontpage", + "is_folderish": false, + "language": "es", + "layout": "document_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2024-03-08T08:53:34+00:00", + "parent": { + "@id": "/es", + "@type": "LRF", + "UID": "d066fc6505ca4ace9df8402aa8cad8df", + "description": "", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Espa\u00f1ol", + "type_title": "Basisordner einer Sprache" + }, + "review_state": "published", + "rights": "", + "subjects": [], + "table_of_contents": null, + "text": { + "content-type": "text/html", + "data": "

\u00a1Edita esta p\u00e1gina y prueba Plone ahora!

", + "encoding": "utf-8" + }, + "title": "Bienvenido a Plone", + "type_title": "Seite", + "version": "current", + "versioning_enabled": true, + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2024-03-08T08:53:34+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2024-03-08T08:53:34+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/4.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/4.json new file mode 100644 index 0000000..6fd898f --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/4.json @@ -0,0 +1,59 @@ +{ + "@id": "/de/demo", + "@type": "Folder", + "UID": "79f01c49712d47c0977f8c35b949af7a", + "allow_discussion": false, + "contributors": [], + "created": "2018-07-19T16:12:33+00:00", + "creators": [ + "admin" + ], + "description": "Vestibulum dignissim erat id eros mollis vitae tempus leo ultricies. Cras dapibus suscipit consectetur. Integer tincidunt feugiat tristique. Sed et arcu risus. Nam venenatis, tortor ac tincidunt amet.", + "effective": "2018-07-19T18:13:00", + "exclude_from_nav": false, + "expires": null, + "id": "demo", + "is_folderish": true, + "language": "de", + "layout": "summary_view", + "lock": {}, + "modified": "2024-03-08T11:24:19+00:00", + "nextPreviousEnabled": false, + "parent": { + "@id": "/de", + "@type": "LRF", + "UID": "1f58fedb9e2f49d688e920c912b85013", + "description": "", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Deutsch", + "type_title": "Basisordner einer Sprache" + }, + "review_state": "published", + "rights": null, + "subjects": [], + "title": "Demo", + "type_title": "Ordner", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2018-07-19T16:12:33+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2018-07-19T16:13:23+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/40.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/40.json new file mode 100644 index 0000000..5fc3fb6 --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/40.json @@ -0,0 +1,58 @@ +{ + "@id": "/es/recursos", + "@type": "LIF", + "UID": "3f22e55c6c1c4fb385c9fb82ac8a44e8", + "allow_discussion": false, + "contributors": [], + "created": "2024-03-08T08:53:33+00:00", + "creators": [ + "admin" + ], + "description": "", + "effective": null, + "exclude_from_nav": true, + "expires": null, + "id": "recursos", + "is_folderish": true, + "language": "es", + "layout": "folder_listing", + "lock": {}, + "modified": "2024-03-08T08:53:33+00:00", + "parent": { + "@id": "/es", + "@type": "LRF", + "UID": "d066fc6505ca4ace9df8402aa8cad8df", + "description": "", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Espa\u00f1ol", + "type_title": "Basisordner einer Sprache" + }, + "review_state": "published", + "rights": "", + "subjects": [], + "title": "Recursos", + "type_title": "Sprachunabh\u00e4ngiger Ordner", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2024-03-08T08:53:33+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2024-03-08T08:53:33+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/41.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/41.json new file mode 100644 index 0000000..6721cb9 --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/41.json @@ -0,0 +1,55 @@ +{ + "@id": "/eu", + "@type": "LRF", + "UID": "1300ff76fc49485f99d40949ade199a5", + "allow_discussion": false, + "contributors": [], + "created": "2024-03-08T08:53:33+00:00", + "creators": [ + "admin" + ], + "description": "", + "effective": null, + "exclude_from_nav": true, + "expires": null, + "id": "eu", + "is_folderish": true, + "language": "eu", + "layout": "folder_listing", + "lock": {}, + "modified": "2024-03-08T11:24:19+00:00", + "parent": { + "@id": "/", + "@type": "Plone Site", + "UID": "76010a4439cd48d3afbeec33ba81bbcd", + "description": "A Plone Site", + "title": "Site", + "type_title": "Website" + }, + "review_state": "published", + "rights": "", + "subjects": [], + "title": "Euskara", + "type_title": "Basisordner einer Sprache", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2024-03-08T08:53:33+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2024-03-08T08:53:33+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/42.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/42.json new file mode 100644 index 0000000..4d43dab --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/42.json @@ -0,0 +1,59 @@ +{ + "@id": "/eu/demo", + "@type": "Folder", + "UID": "85fbc18f5dba40d5bf456cd935fcfcfa", + "allow_discussion": false, + "contributors": [], + "created": "2018-08-27T11:23:52+00:00", + "creators": [ + "admin" + ], + "description": "Vestibulum dignissim erat id eros mollis vitae tempus leo ultricies. Cras dapibus suscipit consectetur. Integer tincidunt feugiat tristique. Sed et arcu risus. Nam venenatis, tortor ac tincidunt amet.", + "effective": "2018-08-27T13:24:00", + "exclude_from_nav": false, + "expires": null, + "id": "demo", + "is_folderish": true, + "language": "eu", + "layout": "listing_view", + "lock": {}, + "modified": "2024-03-08T11:34:30+00:00", + "nextPreviousEnabled": false, + "parent": { + "@id": "/eu", + "@type": "LRF", + "UID": "1300ff76fc49485f99d40949ade199a5", + "description": "", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Euskara", + "type_title": "Basisordner einer Sprache" + }, + "review_state": "published", + "rights": null, + "subjects": [], + "title": "Demo", + "type_title": "Ordner", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2018-08-27T11:23:52+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2018-08-27T11:24:00+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/43.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/43.json new file mode 100644 index 0000000..15b3f88 --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/43.json @@ -0,0 +1,77 @@ +{ + "@id": "/eu/demo/albiste-bat", + "@type": "News Item", + "UID": "9336d0516e3f400b94c68d9f26e901a6", + "allow_discussion": false, + "changeNote": "", + "contributors": [], + "created": "2018-08-27T11:27:44+00:00", + "creators": [ + "admin" + ], + "description": "Aenean lacinia bibendum nulla sed consectetur. Cras mattis consectetur purus sit amet fermentum.", + "effective": "2018-08-27T13:27:00", + "exclude_from_nav": false, + "expires": null, + "id": "albiste-bat", + "image": { + "blob_path": "blobs/9336d0516e3f400b94c68d9f26e901a6-image/turner.jpg", + "content-type": "image/jpeg", + "filename": "turner.jpg", + "height": 1002, + "size": 862842, + "width": 1664 + }, + "image_caption": null, + "is_folderish": false, + "language": "eu", + "layout": "newsitem_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2024-03-08T08:53:34+00:00", + "parent": { + "@id": "/eu/demo", + "@type": "Folder", + "UID": "85fbc18f5dba40d5bf456cd935fcfcfa", + "description": "Vestibulum dignissim erat id eros mollis vitae tempus leo ultricies. Cras dapibus suscipit consectetur. Integer tincidunt feugiat tristique. Sed et arcu risus. Nam venenatis, tortor ac tincidunt amet.", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Demo", + "type_title": "Ordner" + }, + "review_state": "published", + "rights": null, + "subjects": [], + "text": { + "content-type": "text/html", + "data": "

Donec sed odio dui.\u00a0Etiam porta sem malesuada magna mollis euismod. Aenean lacinia bibendum nulla sed consectetur. Cras justo odio, dapibus ac facilisis in, egestas eget quam. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec id elit non mi porta gravida at eget metus.

\r\n

Curabitur blandit tempus porttitor.

\r\n

Curabitur blandit tempus porttitor. Donec id elit non mi porta gravida at eget metus. Etiam porta sem malesuada magna mollis euismod.\u00a0Maecenas sed diam\u00a0eget risus varius blandit sit amet non magna.

Aenean lacinia bibendum nulla sed consectetur. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Aenean lacinia bibendum nulla sed consectetur. Sed posuere consectetur est at lobortis.

", + "encoding": "utf-8" + }, + "title": "Albiste bat", + "type_title": "Nachricht", + "version": "current", + "versioning_enabled": true, + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2018-08-27T11:27:44+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2018-08-27T11:27:51+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/44.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/44.json new file mode 100644 index 0000000..8b38e45 --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/44.json @@ -0,0 +1,87 @@ +{ + "@id": "/eu/demo/bilduma-bat", + "@type": "Collection", + "UID": "0f11e9bdcaa54d08a81c9a80295c555a", + "allow_discussion": false, + "contributors": [], + "created": "2022-04-02T14:25:37+00:00", + "creators": [ + "admin" + ], + "customViewFields": [ + "Title", + "Creator", + "Type", + "ModificationDate" + ], + "description": "Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Maecenas sed diam eget risus varius blandit sit amet non magna.", + "effective": "2022-04-02T16:25:00", + "exclude_from_nav": false, + "expires": null, + "id": "bilduma-bat", + "is_folderish": false, + "item_count": 30, + "items_total": 4, + "language": "eu", + "layout": "tabular_view", + "limit": 1000, + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2024-03-08T08:53:34+00:00", + "parent": { + "@id": "/eu/demo", + "@type": "Folder", + "UID": "85fbc18f5dba40d5bf456cd935fcfcfa", + "description": "Vestibulum dignissim erat id eros mollis vitae tempus leo ultricies. Cras dapibus suscipit consectetur. Integer tincidunt feugiat tristique. Sed et arcu risus. Nam venenatis, tortor ac tincidunt amet.", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Demo", + "type_title": "Ordner" + }, + "query": [ + { + "i": "portal_type", + "o": "plone.app.querystring.operation.selection.any", + "v": [ + "News Item", + "Document" + ] + } + ], + "review_state": "published", + "rights": null, + "sort_on": "modified", + "sort_reversed": true, + "subjects": [], + "text": { + "content-type": "text/html", + "data": "

Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.

\r\n

Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Curabitur blandit tempus porttitor. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.

", + "encoding": "utf-8" + }, + "title": "Bilduma bat", + "type_title": "Kollektion", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2022-04-02T14:25:37+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2022-04-02T14:25:40+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/45.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/45.json new file mode 100644 index 0000000..28808c8 --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/45.json @@ -0,0 +1,86 @@ +{ + "@id": "/eu/demo/easyform", + "@type": "EasyForm", + "CSRFProtection": true, + "UID": "73e80bd9adb14cd399cbd5266b0deea6", + "actions_model": "\n>\n \n \n Mailer\n E-Mails Form Input\n replyto\n topic\n \n \n\n", + "afterValidationOverride": null, + "allow_discussion": false, + "contributors": [], + "created": "2024-03-08T11:34:29+00:00", + "creators": [ + "admin" + ], + "default_fieldset_label": null, + "description": "", + "effective": "2024-03-08T12:34:32", + "exclude_from_nav": false, + "expires": null, + "fields_model": "\n \n \n \n Your E-Mail Address\n \n \n \n Subject\n \n \n \n Comments\n \n \n\n", + "forceSSL": false, + "formActionOverride": null, + "formEpilogue": null, + "formPrologue": null, + "form_tabbing": true, + "headerInjection": null, + "id": "easyform", + "includeEmpties": true, + "is_folderish": false, + "language": "eu", + "layout": "view", + "lock": {}, + "method": "post", + "modified": "2024-03-08T11:34:32+00:00", + "nameAttribute": null, + "onDisplayOverride": null, + "parent": { + "@id": "/eu/demo", + "@type": "Folder", + "UID": "85fbc18f5dba40d5bf456cd935fcfcfa", + "description": "Vestibulum dignissim erat id eros mollis vitae tempus leo ultricies. Cras dapibus suscipit consectetur. Integer tincidunt feugiat tristique. Sed et arcu risus. Nam venenatis, tortor ac tincidunt amet.", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Demo", + "type_title": "Ordner" + }, + "resetLabel": "Garbitu", + "review_state": "published", + "rights": null, + "showAll": true, + "showFields": [], + "subjects": [], + "submitLabel": "Bidali", + "submitLabelOverride": null, + "thanksEpilogue": null, + "thanksPageOverride": null, + "thanksPageOverrideAction": "redirect_to", + "thanksPrologue": null, + "thanksdescription": "Eskerrik asko bidalketagatik", + "thankstitle": "Eskerrik asko", + "title": "EasyForm", + "type_title": "EasyForm", + "unload_protection": true, + "useCancelButton": false, + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2024-03-08T11:34:30+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2024-03-08T11:34:32+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/46.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/46.json new file mode 100644 index 0000000..4f4c937 --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/46.json @@ -0,0 +1,82 @@ +{ + "@id": "/eu/demo/hitzordu-bat", + "@type": "Event", + "UID": "2c56691daadb47d893afbfd73d828923", + "allow_discussion": false, + "attendees": [ + "Plone Community" + ], + "changeNote": "", + "contact_email": null, + "contact_name": null, + "contact_phone": null, + "contributors": [], + "created": "2018-08-27T11:26:34+00:00", + "creators": [ + "admin" + ], + "description": "Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Maecenas sed diam eget risus varius blandit sit amet non magna.", + "effective": "2018-08-27T13:26:00", + "end": "2024-10-05T22:00:00+00:00", + "event_url": null, + "exclude_from_nav": false, + "expires": null, + "id": "hitzordu-bat", + "is_folderish": false, + "language": "eu", + "layout": "event_view", + "location": "Lurra", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2024-03-08T08:53:34+00:00", + "open_end": false, + "parent": { + "@id": "/eu/demo", + "@type": "Folder", + "UID": "85fbc18f5dba40d5bf456cd935fcfcfa", + "description": "Vestibulum dignissim erat id eros mollis vitae tempus leo ultricies. Cras dapibus suscipit consectetur. Integer tincidunt feugiat tristique. Sed et arcu risus. Nam venenatis, tortor ac tincidunt amet.", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Demo", + "type_title": "Ordner" + }, + "recurrence": null, + "review_state": "published", + "rights": null, + "start": "2024-09-29T22:00:00+00:00", + "subjects": [], + "sync_uid": null, + "text": { + "content-type": "text/html", + "data": "

Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Donec id elit non mi porta gravida at eget metus. Donec id elit non mi porta gravida at eget metus. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ullamcorper nulla non metus auctor fringilla. Cras justo odio, dapibus ac facilisis in, egestas eget quam. Morbi leo risus, porta ac consectetur ac, vestibulum at eros.

", + "encoding": "utf-8" + }, + "title": "Hitzordu bat", + "type_title": "Termin", + "version": "current", + "versioning_enabled": true, + "whole_day": true, + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2018-08-27T11:26:34+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2018-08-27T11:26:39+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/47.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/47.json new file mode 100644 index 0000000..e827d0c --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/47.json @@ -0,0 +1,59 @@ +{ + "@id": "/eu/demo/karpeta-bat", + "@type": "Folder", + "UID": "f71e1ae3257d4ef2b296507f4874b069", + "allow_discussion": false, + "contributors": [], + "created": "2018-08-27T11:28:19+00:00", + "creators": [ + "admin" + ], + "description": "Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.", + "effective": "2018-08-27T13:28:00", + "exclude_from_nav": false, + "expires": null, + "id": "karpeta-bat", + "is_folderish": true, + "language": "eu", + "layout": "listing_view", + "lock": {}, + "modified": "2024-03-08T11:24:18+00:00", + "nextPreviousEnabled": false, + "parent": { + "@id": "/eu/demo", + "@type": "Folder", + "UID": "85fbc18f5dba40d5bf456cd935fcfcfa", + "description": "Vestibulum dignissim erat id eros mollis vitae tempus leo ultricies. Cras dapibus suscipit consectetur. Integer tincidunt feugiat tristique. Sed et arcu risus. Nam venenatis, tortor ac tincidunt amet.", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Demo", + "type_title": "Ordner" + }, + "review_state": "published", + "rights": null, + "subjects": [], + "title": "Karpeta bat", + "type_title": "Ordner", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2018-08-27T11:28:19+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2018-08-27T11:28:25+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/48.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/48.json new file mode 100644 index 0000000..5a86838 --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/48.json @@ -0,0 +1,73 @@ +{ + "@id": "/eu/demo/karpeta-bat/karpeta-baten-barruko-orrialdea", + "@type": "Document", + "UID": "4ec428770dec41f0874ff729a0e88003", + "allow_discussion": false, + "blocks": {}, + "blocks_layout": { + "items": [] + }, + "changeNote": "", + "contributors": [], + "created": "2018-08-27T11:28:59+00:00", + "creators": [ + "admin" + ], + "description": "Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.", + "effective": "2018-08-27T13:29:00", + "exclude_from_nav": false, + "expires": null, + "id": "karpeta-baten-barruko-orrialdea", + "is_folderish": false, + "language": "eu", + "layout": "document_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2024-03-08T08:53:34+00:00", + "parent": { + "@id": "/eu/demo/karpeta-bat", + "@type": "Folder", + "UID": "f71e1ae3257d4ef2b296507f4874b069", + "description": "Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Karpeta bat", + "type_title": "Ordner" + }, + "review_state": "published", + "rights": null, + "subjects": [], + "table_of_contents": false, + "text": { + "content-type": "text/html", + "data": "

Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Cras mattis consectetur purus sit amet fermentum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Cras justo odio, dapibus ac facilisis in, egestas eget quam. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Maecenas faucibus mollis interdum.

Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Nulla vitae elit libero, a pharetra augue. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. Vestibulum id ligula porta felis euismod semper. Cras mattis consectetur purus sit amet fermentum.

Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla vitae elit libero, a pharetra augue. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Morbi leo risus, porta ac consectetur ac, vestibulum at eros.

", + "encoding": "utf-8" + }, + "title": "Karpeta baten barruko orrialdea", + "type_title": "Seite", + "version": "current", + "versioning_enabled": true, + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2018-08-27T11:28:59+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2018-08-27T11:29:14+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/49.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/49.json new file mode 100644 index 0000000..da70128 --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/49.json @@ -0,0 +1,61 @@ +{ + "@id": "/eu/demo/lotura-bat", + "@type": "Link", + "UID": "04ac7450c2654f6ab08ffdfda51c05e1", + "allow_discussion": false, + "changeNote": "", + "contributors": [], + "created": "2018-08-27T11:30:44+00:00", + "creators": [ + "admin" + ], + "description": "", + "effective": "2018-08-27T13:30:00", + "exclude_from_nav": false, + "expires": null, + "id": "lotura-bat", + "is_folderish": false, + "language": "eu", + "layout": "link_redirect_view", + "lock": {}, + "modified": "2024-03-08T08:53:34+00:00", + "parent": { + "@id": "/eu/demo", + "@type": "Folder", + "UID": "85fbc18f5dba40d5bf456cd935fcfcfa", + "description": "Vestibulum dignissim erat id eros mollis vitae tempus leo ultricies. Cras dapibus suscipit consectetur. Integer tincidunt feugiat tristique. Sed et arcu risus. Nam venenatis, tortor ac tincidunt amet.", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Demo", + "type_title": "Ordner" + }, + "remoteUrl": "https://plone.com", + "review_state": "published", + "rights": null, + "subjects": [], + "title": "Lotura bat", + "type_title": "Link", + "version": "current", + "versioning_enabled": true, + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2018-08-27T11:30:44+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2018-08-27T11:30:49+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/5.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/5.json new file mode 100644 index 0000000..0b8289f --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/5.json @@ -0,0 +1,80 @@ +{ + "@id": "/de/demo/a-event", + "@type": "Event", + "UID": "97dd7d61838e46eebb5ac7e62239b2af", + "allow_discussion": false, + "attendees": [], + "changeNote": "", + "contact_email": null, + "contact_name": "Plone Community", + "contact_phone": null, + "contributors": [], + "created": "2018-07-19T16:16:58+00:00", + "creators": [ + "admin" + ], + "description": "Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Maecenas sed diam eget risus varius blandit sit amet non magna.", + "effective": "2018-07-19T18:17:00", + "end": "2024-10-05T22:00:00+00:00", + "event_url": "http://ploneconf.org", + "exclude_from_nav": false, + "expires": null, + "id": "a-event", + "is_folderish": false, + "language": "de", + "layout": "event_view", + "location": "Planet Earth", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2024-03-08T08:53:34+00:00", + "open_end": false, + "parent": { + "@id": "/de/demo", + "@type": "Folder", + "UID": "79f01c49712d47c0977f8c35b949af7a", + "description": "Vestibulum dignissim erat id eros mollis vitae tempus leo ultricies. Cras dapibus suscipit consectetur. Integer tincidunt feugiat tristique. Sed et arcu risus. Nam venenatis, tortor ac tincidunt amet.", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Demo", + "type_title": "Ordner" + }, + "recurrence": null, + "review_state": "published", + "rights": null, + "start": "2024-09-29T22:00:00+00:00", + "subjects": [], + "sync_uid": null, + "text": { + "content-type": "text/html", + "data": "

Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Donec id elit non mi porta gravida at eget metus. Donec id elit non mi porta gravida at eget metus. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ullamcorper nulla non metus auctor fringilla. Cras justo odio, dapibus ac facilisis in, egestas eget quam. Morbi leo risus, porta ac consectetur ac, vestibulum at eros.

", + "encoding": "utf-8" + }, + "title": "Ein Termin", + "type_title": "Termin", + "version": "current", + "versioning_enabled": true, + "whole_day": true, + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2018-07-19T16:16:58+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2018-07-19T16:17:04+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/50.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/50.json new file mode 100644 index 0000000..2ebbdf5 --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/50.json @@ -0,0 +1,73 @@ +{ + "@id": "/eu/demo/orrialde-bat", + "@type": "Document", + "UID": "7fe145a7f1e64f908af37370f4435f85", + "allow_discussion": false, + "blocks": {}, + "blocks_layout": { + "items": [] + }, + "changeNote": "", + "contributors": [], + "created": "2018-08-27T11:26:00+00:00", + "creators": [ + "admin" + ], + "description": "Aenean dictum auctor elit, in volutpat ipsum venenatis at. Quisque lobortis augue et enim venenatis interdum. In egestas, est at condimentum ultrices, tortor enim malesuada nulla; vel sagittis nullam.", + "effective": "2018-08-27T13:26:00", + "exclude_from_nav": false, + "expires": null, + "id": "orrialde-bat", + "is_folderish": false, + "language": "eu", + "layout": "document_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2024-03-08T08:53:34+00:00", + "parent": { + "@id": "/eu/demo", + "@type": "Folder", + "UID": "85fbc18f5dba40d5bf456cd935fcfcfa", + "description": "Vestibulum dignissim erat id eros mollis vitae tempus leo ultricies. Cras dapibus suscipit consectetur. Integer tincidunt feugiat tristique. Sed et arcu risus. Nam venenatis, tortor ac tincidunt amet.", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Demo", + "type_title": "Ordner" + }, + "review_state": "published", + "rights": null, + "subjects": [], + "table_of_contents": false, + "text": { + "content-type": "text/html", + "data": "

Fusce vel ante vel dolor feugiat vulputate? Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque luctus pretium tellus, id porttitor erat volutpat et. Donec vehicula accumsan ornare. Mauris quis vulputate dui. Duis convallis congue ornare. Vivamus cursus vestibulum neque at fermentum. Mauris sed velit in enim scelerisque luctus ac vel mauris. Etiam imperdiet tempor lorem, quis ultrices quam blandit ultricies. Ut sodales lacinia purus hendrerit lobortis. Pellentesque blandit; sem at aliquam pulvinar, felis diam tincidunt nisi, ac varius ligula eros eget tortor.

\r\n

Vivamus leo ipsum

\r\n

Dictum sed luctus elementum, ornare quis justo? Nam sagittis mattis turpis, eu varius sapien pulvinar non. Etiam in enim eget odio cursus condimentum! Nullam porta, quam ut sagittis auctor, dui urna ullamcorper urna, semper facilisis purus velit nec leo. Nam libero sem, auctor vitae pretium sit amet, posuere eget arcu.

\r\n

Maecenas ultrices

\r\n

Neque in porttitor scelerisque, nunc nunc semper libero, ac dapibus leo lectus et dui. Praesent sem urna, malesuada in volutpat ac, tincidunt sit amet dolor. Ut dignissim ante vel sem semper venenatis? Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. In hac habitasse platea dictumst. Aenean vitae lectus leo; non bibendum purus.

\r\n
    \r\n
  • Quisque sit amet aliquam elit
  • \r\n
  • Aenean odio urna, congue eu sollicitudin ac
  • \r\n
  • Interdum ac lorem
  • \r\n
  • Pellentesque habitant morbi tristique
  • \r\n
\r\n

Aliquam mattis purus vel nunc tempor sed tempus turpis imperdiet. Pellentesque tincidunt gravida eros at adipiscing. Sed ut tempus nibh. Suspendisse euismod, metus sed lobortis luctus, odio nulla malesuada turpis, in aliquam elit lorem id ante? Pellentesque a elementum dui! Morbi id tellus eget lacus sollicitudin dignissim. Praesent venenatis pellentesque dolor, nec vestibulum felis consectetur non? Sed facilisis, velit vel auctor aliquam, lorem mauris euismod libero, non pellentesque urna mauris vel sem. Aenean eget diam at sem auctor lacinia nec non nisl. Integer sodales fringilla vulputate. Duis massa ante, aliquet id interdum at; placerat nec magna. Ut eleifend sem ut mi elementum eget pellentesque urna dignissim!

", + "encoding": "utf-8" + }, + "title": "Orrialde bat", + "type_title": "Seite", + "version": "current", + "versioning_enabled": true, + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2018-08-27T11:26:00+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2018-08-27T11:26:07+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/51.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/51.json new file mode 100644 index 0000000..00c1bea --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/51.json @@ -0,0 +1,48 @@ +{ + "@id": "/eu/demo/q6.jpg", + "@type": "Image", + "UID": "f552f34782cb49f69c9df6d3bfc53332", + "allow_discussion": false, + "contributors": [], + "created": "2018-08-27T11:31:11+00:00", + "creators": [ + "admin" + ], + "description": null, + "effective": null, + "exclude_from_nav": false, + "expires": null, + "id": "q6.jpg", + "image": { + "blob_path": "blobs/f552f34782cb49f69c9df6d3bfc53332-image/paris.jpg", + "content-type": "image/jpeg", + "filename": "paris.jpg", + "height": 755, + "size": 431326, + "width": 1664 + }, + "is_folderish": false, + "language": "eu", + "layout": "image_view", + "lock": {}, + "modified": "2024-03-08T08:53:34+00:00", + "parent": { + "@id": "/eu/demo", + "@type": "Folder", + "UID": "85fbc18f5dba40d5bf456cd935fcfcfa", + "description": "Vestibulum dignissim erat id eros mollis vitae tempus leo ultricies. Cras dapibus suscipit consectetur. Integer tincidunt feugiat tristique. Sed et arcu risus. Nam venenatis, tortor ac tincidunt amet.", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Demo", + "type_title": "Ordner" + }, + "review_state": null, + "rights": null, + "subjects": [], + "title": "Irudi bat", + "type_title": "Bild", + "version": "current", + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/52.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/52.json new file mode 100644 index 0000000..50a2f87 --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/52.json @@ -0,0 +1,73 @@ +{ + "@id": "/eu/frontpage", + "@type": "Document", + "UID": "ef5e5df2eeb440c7bd750f224757b58f", + "allow_discussion": false, + "blocks": {}, + "blocks_layout": { + "items": [] + }, + "changeNote": "", + "contributors": [], + "created": "2024-03-08T08:53:34+00:00", + "creators": [ + "admin" + ], + "description": "Software Libreko Edukiak Kudeatzeko Sistema", + "effective": null, + "exclude_from_nav": false, + "expires": null, + "id": "frontpage", + "is_folderish": false, + "language": "eu", + "layout": "document_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2024-03-08T08:53:34+00:00", + "parent": { + "@id": "/eu", + "@type": "LRF", + "UID": "1300ff76fc49485f99d40949ade199a5", + "description": "", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Euskara", + "type_title": "Basisordner einer Sprache" + }, + "review_state": "published", + "rights": "", + "subjects": [], + "table_of_contents": null, + "text": { + "content-type": "text/html", + "data": "

Editatu gune hau eta probatu Plone orain!

", + "encoding": "utf-8" + }, + "title": "Ongi etorri Plone era", + "type_title": "Seite", + "version": "current", + "versioning_enabled": true, + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2024-03-08T08:53:34+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2024-03-08T08:53:34+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/53.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/53.json new file mode 100644 index 0000000..e7294e6 --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/53.json @@ -0,0 +1,58 @@ +{ + "@id": "/eu/media", + "@type": "LIF", + "UID": "c223e1d3484a4304baff3ece7fbcc926", + "allow_discussion": false, + "contributors": [], + "created": "2024-03-08T08:53:33+00:00", + "creators": [ + "admin" + ], + "description": "", + "effective": null, + "exclude_from_nav": true, + "expires": null, + "id": "media", + "is_folderish": true, + "language": "eu", + "layout": "folder_listing", + "lock": {}, + "modified": "2024-03-08T08:53:33+00:00", + "parent": { + "@id": "/eu", + "@type": "LRF", + "UID": "1300ff76fc49485f99d40949ade199a5", + "description": "", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Euskara", + "type_title": "Basisordner einer Sprache" + }, + "review_state": "published", + "rights": "", + "subjects": [], + "title": "Media", + "type_title": "Sprachunabh\u00e4ngiger Ordner", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2024-03-08T08:53:33+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2024-03-08T08:53:33+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/6.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/6.json new file mode 100644 index 0000000..e4432cd --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/6.json @@ -0,0 +1,59 @@ +{ + "@id": "/de/demo/a-folder", + "@type": "Folder", + "UID": "78dd69b22bfd4486806c1bb89d2acd06", + "allow_discussion": false, + "contributors": [], + "created": "2018-07-20T13:44:38+00:00", + "creators": [ + "admin" + ], + "description": "", + "effective": "2018-07-20T15:44:00", + "exclude_from_nav": false, + "expires": null, + "id": "a-folder", + "is_folderish": true, + "language": "de", + "layout": "listing_view", + "lock": {}, + "modified": "2024-03-08T11:24:17+00:00", + "nextPreviousEnabled": false, + "parent": { + "@id": "/de/demo", + "@type": "Folder", + "UID": "79f01c49712d47c0977f8c35b949af7a", + "description": "Vestibulum dignissim erat id eros mollis vitae tempus leo ultricies. Cras dapibus suscipit consectetur. Integer tincidunt feugiat tristique. Sed et arcu risus. Nam venenatis, tortor ac tincidunt amet.", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Demo", + "type_title": "Ordner" + }, + "review_state": "published", + "rights": null, + "subjects": [], + "title": "Ein Ordner", + "type_title": "Ordner", + "version": "current", + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2018-07-20T13:44:38+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2018-07-20T13:44:43+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/7.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/7.json new file mode 100644 index 0000000..f922a00 --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/7.json @@ -0,0 +1,73 @@ +{ + "@id": "/de/demo/a-folder/a-page-inside-a-folder", + "@type": "Document", + "UID": "dd01c82bbbb64b8ab37469843ecd1d03", + "allow_discussion": false, + "blocks": {}, + "blocks_layout": { + "items": [] + }, + "changeNote": "", + "contributors": [], + "created": "2018-07-20T13:45:13+00:00", + "creators": [ + "admin" + ], + "description": "Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.", + "effective": "2018-07-20T15:45:00", + "exclude_from_nav": false, + "expires": null, + "id": "a-page-inside-a-folder", + "is_folderish": false, + "language": "de", + "layout": "document_view", + "lock": { + "locked": false, + "stealable": true + }, + "modified": "2024-03-08T08:53:34+00:00", + "parent": { + "@id": "/de/demo/a-folder", + "@type": "Folder", + "UID": "78dd69b22bfd4486806c1bb89d2acd06", + "description": "", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Ein Ordner", + "type_title": "Ordner" + }, + "review_state": "published", + "rights": null, + "subjects": [], + "table_of_contents": false, + "text": { + "content-type": "text/html", + "data": "
\r\n
Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.
\r\n
\r\n
\r\n
\r\n
\r\n

Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Cras mattis consectetur purus sit amet fermentum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Cras justo odio, dapibus ac facilisis in, egestas eget quam. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Maecenas faucibus mollis interdum.

Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Nulla vitae elit libero, a pharetra augue. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. Vestibulum id ligula porta felis euismod semper. Cras mattis consectetur purus sit amet fermentum.

Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla vitae elit libero, a pharetra augue. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Morbi leo risus, porta ac consectetur ac, vestibulum at eros.

\r\n
\r\n
", + "encoding": "utf-8" + }, + "title": "Eine Seite in einem Ordner", + "type_title": "Seite", + "version": "current", + "versioning_enabled": true, + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2018-07-20T13:45:13+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2018-07-20T13:45:18+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/8.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/8.json new file mode 100644 index 0000000..540e6ea --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/8.json @@ -0,0 +1,48 @@ +{ + "@id": "/de/demo/a-image.jpg", + "@type": "Image", + "UID": "0ec640ff06e4401792c31018655050db", + "allow_discussion": false, + "contributors": [], + "created": "2018-07-20T13:49:01+00:00", + "creators": [ + "admin" + ], + "description": null, + "effective": null, + "exclude_from_nav": false, + "expires": null, + "id": "a-image.jpg", + "image": { + "blob_path": "blobs/0ec640ff06e4401792c31018655050db-image/paris.jpg", + "content-type": "image/jpeg", + "filename": "paris.jpg", + "height": 755, + "size": 431326, + "width": 1664 + }, + "is_folderish": false, + "language": "de", + "layout": "image_view", + "lock": {}, + "modified": "2024-03-08T08:53:34+00:00", + "parent": { + "@id": "/de/demo", + "@type": "Folder", + "UID": "79f01c49712d47c0977f8c35b949af7a", + "description": "Vestibulum dignissim erat id eros mollis vitae tempus leo ultricies. Cras dapibus suscipit consectetur. Integer tincidunt feugiat tristique. Sed et arcu risus. Nam venenatis, tortor ac tincidunt amet.", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Demo", + "type_title": "Ordner" + }, + "review_state": null, + "rights": null, + "subjects": [], + "title": "Ein Bild", + "type_title": "Bild", + "version": "current", + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/9.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/9.json new file mode 100644 index 0000000..8d0da69 --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/items/9.json @@ -0,0 +1,61 @@ +{ + "@id": "/de/demo/a-link", + "@type": "Link", + "UID": "182dcc5b98c94818b9f4c1c8e488c7ff", + "allow_discussion": false, + "changeNote": "", + "contributors": [], + "created": "2018-07-20T13:48:10+00:00", + "creators": [ + "admin" + ], + "description": "", + "effective": "2018-07-20T15:48:00", + "exclude_from_nav": false, + "expires": null, + "id": "a-link", + "is_folderish": false, + "language": "de", + "layout": "link_redirect_view", + "lock": {}, + "modified": "2024-03-08T08:53:34+00:00", + "parent": { + "@id": "/de/demo", + "@type": "Folder", + "UID": "79f01c49712d47c0977f8c35b949af7a", + "description": "Vestibulum dignissim erat id eros mollis vitae tempus leo ultricies. Cras dapibus suscipit consectetur. Integer tincidunt feugiat tristique. Sed et arcu risus. Nam venenatis, tortor ac tincidunt amet.", + "image_field": null, + "image_scales": null, + "review_state": "published", + "title": "Demo", + "type_title": "Ordner" + }, + "remoteUrl": "https://plone.com/", + "review_state": "published", + "rights": null, + "subjects": [], + "title": "Ein Link", + "type_title": "Link", + "version": "current", + "versioning_enabled": true, + "workflow_history": { + "simple_publication_workflow": [ + { + "action": null, + "actor": "admin", + "comments": "", + "review_state": "private", + "time": "2018-07-20T13:48:10+00:00" + }, + { + "action": "publish", + "actor": "admin", + "comments": "", + "review_state": "published", + "time": "2018-07-20T13:48:14+00:00" + } + ] + }, + "working_copy": null, + "working_copy_of": null +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/members.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/members.json new file mode 100644 index 0000000..18e6d95 --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/members.json @@ -0,0 +1,99 @@ +{ + "groups": [ + { + "description": "", + "email": "", + "groupid": "Administrators", + "groups": [], + "principals": [ + "manager" + ], + "roles": [ + "Manager" + ], + "title": "Administrators" + }, + { + "description": "", + "email": "", + "groupid": "Reviewers", + "groups": [], + "principals": [ + "editorinchief" + ], + "roles": [ + "Reviewer" + ], + "title": "Reviewers" + }, + { + "description": "", + "email": "", + "groupid": "Site Administrators", + "groups": [], + "principals": [], + "roles": [ + "Site Administrator" + ], + "title": "Site Administrators" + } + ], + "members": [ + { + "description": "", + "email": "demo@plone.de", + "fullname": "Editor", + "groups": [], + "home_page": "", + "last_login_time": "2000-01-01T00:00:00", + "listed": true, + "location": "", + "login_time": "2000-01-01T00:00:00", + "password": "{SSHA}Ii6+kMHEgyVBu3VFXxY+lYHB+X3ZnHZXo4Bs", + "roles": [ + "Contributor", + "Member", + "Reader", + "Editor" + ], + "username": "editor" + }, + { + "description": "", + "email": "demo@plone.de", + "fullname": "Editor-in-chief", + "groups": [ + "Reviewers" + ], + "home_page": "", + "last_login_time": "2000-01-01T00:00:00", + "listed": true, + "location": "", + "login_time": "2000-01-01T00:00:00", + "password": "{SSHA}YBMBj1RqHRYAC5keNzFDykDALQj1cPDBjaF2", + "roles": [ + "Reader", + "Member", + "Contributor", + "Editor" + ], + "username": "editorinchief" + }, + { + "description": "", + "email": "demo@plone.de", + "fullname": "Manager", + "groups": [ + "Administrators" + ], + "home_page": "", + "last_login_time": "2024-03-08T11:35:03+00:00", + "listed": true, + "location": "", + "login_time": "2024-03-08T11:35:04+00:00", + "password": "{SSHA}1rin6pe/0d43orKxk+/kjtYvDYz3ZnAXRs2q", + "roles": [], + "username": "manager" + } + ] +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/ordering.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/ordering.json new file mode 100644 index 0000000..9258272 --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/ordering.json @@ -0,0 +1,210 @@ +[ + { + "order": 0, + "uuid": "e082374ad260493a86c2c415569c3ad4" + }, + { + "order": 0, + "uuid": "5c380e40de1f424b92e9a220467f078c" + }, + { + "order": 0, + "uuid": "cdeb51770c5a4525abaa0493bb5780bb" + }, + { + "order": 0, + "uuid": "1d0d324e341f4cb4859acf541780a4c9" + }, + { + "order": 0, + "uuid": "fb91bddde7eb46efbed20e9c10fb4929" + }, + { + "order": 0, + "uuid": "dd01c82bbbb64b8ab37469843ecd1d03" + }, + { + "order": 0, + "uuid": "3f22e55c6c1c4fb385c9fb82ac8a44e8" + }, + { + "order": 0, + "uuid": "13f909b522a94443823e187ea9ebab0b" + }, + { + "order": 0, + "uuid": "593cf5489fce493a95b59bb4f3ef9ee1" + }, + { + "order": 0, + "uuid": "c223e1d3484a4304baff3ece7fbcc926" + }, + { + "order": 0, + "uuid": "7fe145a7f1e64f908af37370f4435f85" + }, + { + "order": 0, + "uuid": "4ec428770dec41f0874ff729a0e88003" + }, + { + "order": 1, + "uuid": "e40c713df9f1414b8c7fc0e190006a51" + }, + { + "order": 1, + "uuid": "cfb30b644a9c4886b4950a7e708e0cbb" + }, + { + "order": 1, + "uuid": "4a843a854ce0465299c6acf1ee606462" + }, + { + "order": 1, + "uuid": "97dd7d61838e46eebb5ac7e62239b2af" + }, + { + "order": 1, + "uuid": "fc2b43f7bbe04bec886ecd8dd287ca5e" + }, + { + "order": 1, + "uuid": "fb46a1a5e28248c9befe9b5a696d52b4" + }, + { + "order": 1, + "uuid": "ef5e5df2eeb440c7bd750f224757b58f" + }, + { + "order": 1, + "uuid": "2c56691daadb47d893afbfd73d828923" + }, + { + "order": 2, + "uuid": "9afb95a79cfa4c0684715027244e61e0" + }, + { + "order": 2, + "uuid": "4423a1b21c06425886e315c4d0e3a676" + }, + { + "order": 2, + "uuid": "79f01c49712d47c0977f8c35b949af7a" + }, + { + "order": 2, + "uuid": "ecaab7fb8d2c4183b8bd57080d06f7ec" + }, + { + "order": 2, + "uuid": "353551eee36e491e89bc097f17f05e59" + }, + { + "order": 2, + "uuid": "1be0093b8c624ade89eba7329f8d6947" + }, + { + "order": 2, + "uuid": "85fbc18f5dba40d5bf456cd935fcfcfa" + }, + { + "order": 2, + "uuid": "9336d0516e3f400b94c68d9f26e901a6" + }, + { + "order": 3, + "uuid": "a07f9e78ee864e689d72fde066adbac3" + }, + { + "order": 3, + "uuid": "78dd69b22bfd4486806c1bb89d2acd06" + }, + { + "order": 3, + "uuid": "bd5ff3d542bc42f79d2eab0b99c1ec9d" + }, + { + "order": 3, + "uuid": "f71e1ae3257d4ef2b296507f4874b069" + }, + { + "order": 4, + "uuid": "2ce50f00faf74ffb8e3db907e02f83fc" + }, + { + "order": 4, + "uuid": "182dcc5b98c94818b9f4c1c8e488c7ff" + }, + { + "order": 4, + "uuid": "ae9d4c02a78b487fb74be8fde688e773" + }, + { + "order": 4, + "uuid": "04ac7450c2654f6ab08ffdfda51c05e1" + }, + { + "order": 5, + "uuid": "d5a10ad499c34d699049d8027c25e4ca" + }, + { + "order": 5, + "uuid": "0ec640ff06e4401792c31018655050db" + }, + { + "order": 5, + "uuid": "8b9931d15212461685e4f23483aed815" + }, + { + "order": 5, + "uuid": "f552f34782cb49f69c9df6d3bfc53332" + }, + { + "order": 6, + "uuid": "bfdc104dadc844cdb4a9412165dad82e" + }, + { + "order": 6, + "uuid": "cd6271401a744e649e99afd5bb786bef" + }, + { + "order": 6, + "uuid": "0a600821c535433c974b2e706fabd704" + }, + { + "order": 6, + "uuid": "0f11e9bdcaa54d08a81c9a80295c555a" + }, + { + "order": 7, + "uuid": "998eb483577d4680973a69780841e8e1" + }, + { + "order": 7, + "uuid": "76f47b0fbb6d49dd921cd0c6a4015fff" + }, + { + "order": 7, + "uuid": "aa6c61a2c130419ea55d57d2d4383dc8" + }, + { + "order": 7, + "uuid": "73e80bd9adb14cd399cbd5266b0deea6" + }, + { + "order": 42, + "uuid": "0ec57c1f5b104a59b034553ec00908ec" + }, + { + "order": 43, + "uuid": "1f58fedb9e2f49d688e920c912b85013" + }, + { + "order": 44, + "uuid": "d066fc6505ca4ace9df8402aa8cad8df" + }, + { + "order": 45, + "uuid": "1300ff76fc49485f99d40949ade199a5" + } +] \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/translations.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/translations.json new file mode 100644 index 0000000..a3da082 --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/content/translations.json @@ -0,0 +1,74 @@ +[ + { + "de": "0ec640ff06e4401792c31018655050db", + "en": "d5a10ad499c34d699049d8027c25e4ca", + "es": "8b9931d15212461685e4f23483aed815", + "eu": "f552f34782cb49f69c9df6d3bfc53332" + }, + { + "de": "76f47b0fbb6d49dd921cd0c6a4015fff", + "en": "998eb483577d4680973a69780841e8e1", + "es": "aa6c61a2c130419ea55d57d2d4383dc8", + "eu": "73e80bd9adb14cd399cbd5266b0deea6" + }, + { + "de": "78dd69b22bfd4486806c1bb89d2acd06", + "en": "a07f9e78ee864e689d72fde066adbac3", + "es": "bd5ff3d542bc42f79d2eab0b99c1ec9d", + "eu": "f71e1ae3257d4ef2b296507f4874b069" + }, + { + "de": "dd01c82bbbb64b8ab37469843ecd1d03", + "en": "cdeb51770c5a4525abaa0493bb5780bb", + "es": "593cf5489fce493a95b59bb4f3ef9ee1", + "eu": "4ec428770dec41f0874ff729a0e88003" + }, + { + "de": "97dd7d61838e46eebb5ac7e62239b2af", + "en": "cfb30b644a9c4886b4950a7e708e0cbb", + "es": "fb46a1a5e28248c9befe9b5a696d52b4", + "eu": "2c56691daadb47d893afbfd73d828923" + }, + { + "de": "182dcc5b98c94818b9f4c1c8e488c7ff", + "en": "2ce50f00faf74ffb8e3db907e02f83fc", + "es": "ae9d4c02a78b487fb74be8fde688e773", + "eu": "04ac7450c2654f6ab08ffdfda51c05e1" + }, + { + "de": "fb91bddde7eb46efbed20e9c10fb4929", + "en": "5c380e40de1f424b92e9a220467f078c", + "es": "13f909b522a94443823e187ea9ebab0b", + "eu": "7fe145a7f1e64f908af37370f4435f85" + }, + { + "de": "1f58fedb9e2f49d688e920c912b85013", + "en": "0ec57c1f5b104a59b034553ec00908ec", + "es": "d066fc6505ca4ace9df8402aa8cad8df", + "eu": "1300ff76fc49485f99d40949ade199a5" + }, + { + "de": "79f01c49712d47c0977f8c35b949af7a", + "en": "9afb95a79cfa4c0684715027244e61e0", + "es": "353551eee36e491e89bc097f17f05e59", + "eu": "85fbc18f5dba40d5bf456cd935fcfcfa" + }, + { + "de": "4a843a854ce0465299c6acf1ee606462", + "en": "e40c713df9f1414b8c7fc0e190006a51", + "es": "fc2b43f7bbe04bec886ecd8dd287ca5e", + "eu": "ef5e5df2eeb440c7bd750f224757b58f" + }, + { + "de": "cd6271401a744e649e99afd5bb786bef", + "en": "bfdc104dadc844cdb4a9412165dad82e", + "es": "0a600821c535433c974b2e706fabd704", + "eu": "0f11e9bdcaa54d08a81c9a80295c555a" + }, + { + "de": "ecaab7fb8d2c4183b8bd57080d06f7ec", + "en": "4423a1b21c06425886e315c4d0e3a676", + "es": "1be0093b8c624ade89eba7329f8d6947", + "eu": "9336d0516e3f400b94c68d9f26e901a6" + } +] \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/profiles.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/profiles.json new file mode 100644 index 0000000..e5b3967 --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/profiles.json @@ -0,0 +1,10 @@ +{ + "base": [ + "plone.app.contenttypes:default", + "plone.app.caching:default", + "plonetheme.barceloneta:default", + "plone.app.multilingual:default", + "collective.easyform:default", + "plonedemo.site:default" + ] +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/schema.json b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/schema.json new file mode 100644 index 0000000..4debfb5 --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/distributions/classicdemo/schema.json @@ -0,0 +1,43 @@ +{ + "schema": { + "title": "Create a Plone Classic site", + "description": "Adds a new Plone content management system site to the underlying application server.", + "type": "object", + "required": [ + "site_id", + "title" + ], + "properties": { + "site_id": { + "type": "string", + "title": "Path Identifier", + "default": "Plone", + "description": "The ID of the site. No special characters or spaces are allowed. This ends up as part of the URL unless hidden by an upstream web server." + }, + "title": { + "type": "string", + "title": "Title", + "default": "Site", + "description": "A short title for the site. This will be shown as part of the title of the browser window on each page." + }, + "description": { + "type": "string", + "title": "Site Description", + "default": "A Plone Site" + }, + "default_language": { + "$ref": "#/definitions/languages" + }, + "portal_timezone": { + "$ref": "#/definitions/timezones" + }, + "setup_content": { + "type": "boolean", + "title": "Create Example Content", + "description": "Should example content be added during site creation?", + "default": true + } + } + }, + "uischema": {} +} \ No newline at end of file diff --git a/classic/src/plonedemo.site/src/plonedemo/site/locales/de/LC_MESSAGES/plonedemo.site.po b/classic/src/plonedemo.site/src/plonedemo/site/locales/de/LC_MESSAGES/plonedemo.site.po index ff21638..ae42d6a 100644 --- a/classic/src/plonedemo.site/src/plonedemo/site/locales/de/LC_MESSAGES/plonedemo.site.po +++ b/classic/src/plonedemo.site/src/plonedemo/site/locales/de/LC_MESSAGES/plonedemo.site.po @@ -151,8 +151,3 @@ msgstr "" #: ../configure.zcml:29 msgid "plonedemo.site - uninstall" msgstr "" - -#. Default: "

Edit this site and test Plone now!

" -#: ../browser/templates/frontpage.pt:10 -msgid "plonedemo_frontpage" -msgstr "

Bearbeiten Sie diese Seite und testen Sie Plone jetzt!

" diff --git a/classic/src/plonedemo.site/src/plonedemo/site/locales/en/LC_MESSAGES/plonedemo.site.po b/classic/src/plonedemo.site/src/plonedemo/site/locales/en/LC_MESSAGES/plonedemo.site.po index ad22ce5..99bb623 100644 --- a/classic/src/plonedemo.site/src/plonedemo/site/locales/en/LC_MESSAGES/plonedemo.site.po +++ b/classic/src/plonedemo.site/src/plonedemo/site/locales/en/LC_MESSAGES/plonedemo.site.po @@ -151,8 +151,3 @@ msgstr "" #: ../configure.zcml:29 msgid "plonedemo.site - uninstall" msgstr "" - -#. Default: "

Edit this site and test Plone now!

" -#: ../browser/templates/frontpage.pt:10 -msgid "plonedemo_frontpage" -msgstr "" diff --git a/classic/src/plonedemo.site/src/plonedemo/site/locales/es/LC_MESSAGES/plonedemo.site.po b/classic/src/plonedemo.site/src/plonedemo/site/locales/es/LC_MESSAGES/plonedemo.site.po index 38e5387..a311fe9 100644 --- a/classic/src/plonedemo.site/src/plonedemo/site/locales/es/LC_MESSAGES/plonedemo.site.po +++ b/classic/src/plonedemo.site/src/plonedemo/site/locales/es/LC_MESSAGES/plonedemo.site.po @@ -153,8 +153,3 @@ msgstr "plonedemo.site" #: ../configure.zcml:29 msgid "plonedemo.site - uninstall" msgstr "plonedemo.site - uninstall" - -#. Default: "

Edit this site and test Plone now!

" -#: ../browser/templates/frontpage.pt:10 -msgid "plonedemo_frontpage" -msgstr "

¡Edita esta página y prueba Plone ahora!

" diff --git a/classic/src/plonedemo.site/src/plonedemo/site/locales/eu/LC_MESSAGES/plonedemo.site.po b/classic/src/plonedemo.site/src/plonedemo/site/locales/eu/LC_MESSAGES/plonedemo.site.po index 491b4d6..06eb203 100644 --- a/classic/src/plonedemo.site/src/plonedemo/site/locales/eu/LC_MESSAGES/plonedemo.site.po +++ b/classic/src/plonedemo.site/src/plonedemo/site/locales/eu/LC_MESSAGES/plonedemo.site.po @@ -153,8 +153,3 @@ msgstr "plonedemo.site" #: ../configure.zcml:29 msgid "plonedemo.site - uninstall" msgstr "plonedemo.site - uninstall" - -#. Default: "

Edit this site and test Plone now!

" -#: ../browser/templates/frontpage.pt:10 -msgid "plonedemo_frontpage" -msgstr "

Editatu gune hau eta probatu Plone orain!

" diff --git a/classic/src/plonedemo.site/src/plonedemo/site/locales/fr/LC_MESSAGES/plonedemo.site.po b/classic/src/plonedemo.site/src/plonedemo/site/locales/fr/LC_MESSAGES/plonedemo.site.po index ad22ce5..99bb623 100644 --- a/classic/src/plonedemo.site/src/plonedemo/site/locales/fr/LC_MESSAGES/plonedemo.site.po +++ b/classic/src/plonedemo.site/src/plonedemo/site/locales/fr/LC_MESSAGES/plonedemo.site.po @@ -151,8 +151,3 @@ msgstr "" #: ../configure.zcml:29 msgid "plonedemo.site - uninstall" msgstr "" - -#. Default: "

Edit this site and test Plone now!

" -#: ../browser/templates/frontpage.pt:10 -msgid "plonedemo_frontpage" -msgstr "" diff --git a/classic/src/plonedemo.site/src/plonedemo/site/profiles/default/demo_de.zexp b/classic/src/plonedemo.site/src/plonedemo/site/profiles/default/demo_de.zexp deleted file mode 100644 index c84b101..0000000 Binary files a/classic/src/plonedemo.site/src/plonedemo/site/profiles/default/demo_de.zexp and /dev/null differ diff --git a/classic/src/plonedemo.site/src/plonedemo/site/profiles/default/demo_en.zexp b/classic/src/plonedemo.site/src/plonedemo/site/profiles/default/demo_en.zexp deleted file mode 100644 index a4f4f57..0000000 Binary files a/classic/src/plonedemo.site/src/plonedemo/site/profiles/default/demo_en.zexp and /dev/null differ diff --git a/classic/src/plonedemo.site/src/plonedemo/site/profiles/default/demo_es.zexp b/classic/src/plonedemo.site/src/plonedemo/site/profiles/default/demo_es.zexp deleted file mode 100644 index 31122a3..0000000 Binary files a/classic/src/plonedemo.site/src/plonedemo/site/profiles/default/demo_es.zexp and /dev/null differ diff --git a/classic/src/plonedemo.site/src/plonedemo/site/profiles/default/demo_eu.zexp b/classic/src/plonedemo.site/src/plonedemo/site/profiles/default/demo_eu.zexp deleted file mode 100644 index 2da6120..0000000 Binary files a/classic/src/plonedemo.site/src/plonedemo/site/profiles/default/demo_eu.zexp and /dev/null differ diff --git a/classic/src/plonedemo.site/src/plonedemo/site/profiles/default/metadata.xml b/classic/src/plonedemo.site/src/plonedemo/site/profiles/default/metadata.xml index 57d5e45..8bb2c3e 100644 --- a/classic/src/plonedemo.site/src/plonedemo/site/profiles/default/metadata.xml +++ b/classic/src/plonedemo.site/src/plonedemo/site/profiles/default/metadata.xml @@ -4,5 +4,6 @@ profile-plone.app.multilingual:default profile-plone.restapi:blocks + profile-collective.easyform:default diff --git a/classic/src/plonedemo.site/src/plonedemo/site/profiles/default/registry.xml b/classic/src/plonedemo.site/src/plonedemo/site/profiles/default/registry.xml index fa6d8fb..21da587 100644 --- a/classic/src/plonedemo.site/src/plonedemo/site/profiles/default/registry.xml +++ b/classic/src/plonedemo.site/src/plonedemo/site/profiles/default/registry.xml @@ -1,8 +1,6 @@ - + <!-- Piwik --> <script type="text/javascript"> var _paq = _paq || []; @@ -21,21 +19,15 @@ - + demo.plone.org - + False - + en de @@ -44,21 +36,15 @@ - + en - + True - + True diff --git a/classic/src/plonedemo.site/src/plonedemo/site/profiles/default/types/EasyForm.xml b/classic/src/plonedemo.site/src/plonedemo/site/profiles/default/types/EasyForm.xml new file mode 100644 index 0000000..fed1ee8 --- /dev/null +++ b/classic/src/plonedemo.site/src/plonedemo/site/profiles/default/types/EasyForm.xml @@ -0,0 +1,14 @@ + + + + + + + + diff --git a/classic/src/plonedemo.site/src/plonedemo/site/setuphandlers.py b/classic/src/plonedemo.site/src/plonedemo/site/setuphandlers.py index 72b9cbb..bc71877 100644 --- a/classic/src/plonedemo.site/src/plonedemo/site/setuphandlers.py +++ b/classic/src/plonedemo.site/src/plonedemo/site/setuphandlers.py @@ -1,257 +1,14 @@ -from plone import api -from plone.app.multilingual.browser.setup import SetupMultilingualSite -from plone.app.multilingual.interfaces import ITranslationManager -from plone.app.textfield.value import RichTextValue -from plonedemo.site import _ -from Products.CMFCore.WorkflowCore import WorkflowException -from Products.CMFPlone.interfaces import ILanguage from Products.CMFPlone.interfaces import INonInstallable -from Products.CMFPlone.utils import bodyfinder -from zope.component import queryUtility -from zope.i18n.interfaces import ITranslationDomain from zope.interface import implementer -import logging -import os - - -logger = logging.getLogger(__name__) - -DEFAULT_EMAIL = "demo@plone.de" -FRONTPAGE_TITLE = _("Welcome to Plone") -FRONTPAGE_DESCRIPTION = _("The ultimate Open Source Enterprise CMS") -IMPORTED_FOLDER_ID = "demo" - @implementer(INonInstallable) class HiddenProfiles: - def getNonInstallableProfiles(self): - return [ - "plondemo.site:uninstall", - "plone.app.openid:default", - "archetypes.multilingual:default", - ] - - -def post_install(setup): - """Post install script""" - portal = api.portal.get() - remove_content(portal) - create_demo_users() - languages = api.portal.get_registry_record("plone.available_languages") - ml_setup_tool = SetupMultilingualSite() - ml_setup_tool.setupSite(portal) - for language in languages: - container = portal[language] - - # Create frontpage for language - frontpage = create_frontpage( - portal, container=container, target_language=language - ) - container.setDefaultPage("frontpage") - ILanguage(frontpage).set_language(language) - - # Link the new frontpage as a translation to all existing items - for lang in languages: - existing_frontpage = portal[lang].get("frontpage") - if existing_frontpage: - ITranslationManager(existing_frontpage).register_translation( - language, frontpage - ) - - # Import zexp for language - import_zexp( - setup, - filename=f"demo_{language}.zexp", - container=container, - name="demo", - update=True, - publish=True, - ) - - default_language = api.portal.get_default_language() - default_lang_folder = portal.get(default_language) - demo_folder = default_lang_folder.get(IMPORTED_FOLDER_ID) - for language in languages: - if not demo_folder: - break - if language == default_language: - continue - lang_folder = portal.get(language) - lang_demo_folder = lang_folder.get(IMPORTED_FOLDER_ID) - if not lang_demo_folder: - continue - - # link demo-folders - link_translations( - obj=demo_folder, translation=lang_demo_folder, language=language - ) - - translated = [] - for obj1_id, obj1 in demo_folder.contentItems(): - # try to find a possible translation - for obj2_id, obj2 in lang_demo_folder.contentItems(): - if obj2_id in translated: - continue - # link the first item with the same portal_type - if obj1.portal_type == obj2.portal_type: - link_translations(obj=obj1, translation=obj2, language=language) - translated.append(obj2_id) - break - # setup_wpd(portal) - - -def uninstall(setup): - """Uninstall script""" - - -def remove_content(portal): - default_content = [ - "front-page", - "Members", - "news", - "events", - ] - for item in default_content: - if item in portal: - api.content.delete(portal[item]) - - -def create_demo_users(): - # Do something during the installation of this package - demo_users = [ - { - "login": "editor", - "password": "ploneeditor", - "fullname": "Editor", - "roles": ("Reader", "Contributor", "Editor", "Member"), - }, - { - "login": "editorinchief", - "password": "ploneeditorinchief", - "fullname": "Editor-in-chief", - "groups": ["Reviewers"], - "roles": ("Reader", "Contributor", "Reviewer", "Editor", "Member"), - }, - { - "login": "manager", - "password": "plonemanager", - "fullname": "Manager", - "groups": ["Administrators"], - "roles": ("Administrator",), - }, - ] - for demo_user in demo_users: - if api.user.get(username=demo_user.get("login")): - continue - new_user = api.user.create( - email=DEFAULT_EMAIL, - username=demo_user.get("login"), - password=demo_user.get("password"), - roles=demo_user.get("roles"), - properties={"fullname": demo_user.get("fullname")}, - ) - for group in demo_user.get("groups", []): - api.group.add_user( - groupname=group, - user=new_user, - ) - - -def create_frontpage(portal, container, target_language): - """Create a frontpage. The text is the translation or default of - the view '@@demo_frontpage'. - """ - if not container.get("frontpage"): - frontpage = api.content.create( - container, "Document", "frontpage", FRONTPAGE_TITLE - ) - api.content.transition(frontpage, to_state="published") - frontpage = container.get("frontpage") - util = queryUtility(ITranslationDomain, "plonedemo.site") - frontpage.title = util.translate(FRONTPAGE_TITLE, target_language=target_language) - frontpage.description = util.translate( - FRONTPAGE_DESCRIPTION, target_language=target_language - ) - front_text = None - # Get frontpage-text from the translation-machinery. - # To edit it you have to modify - # plonedemo/site/locales/XX/LC_MESSAGES/plonedemo.site.po - translated_text = util.translate( - msgid="plonedemo_frontpage", target_language=target_language - ) - if translated_text != "plonedemo_frontpage": - front_text = translated_text - if front_text is None: - # Get text from reading the template-file since I can't find a way to - # get the english default text using util.translate() - # To modify edit plonedemo/site/browser/templates/frontpage.pt - path = os.path.join( - os.path.abspath(os.path.dirname(__file__)), - "browser", - "templates", - "frontpage.pt", - ) - frontpage_raw = open(path).read() - front_text = bodyfinder(frontpage_raw).strip() - - frontpage.text = RichTextValue(front_text, "text/html", "text/x-html-safe") - return frontpage - - -def import_zexp(setup, filename, container, name, update=True, publish=True): - """Import a zexp""" - # Check if the zexp-file is actually in profiles/default - context = setup._getImportContext("profile-plonedemo.site:default") - path = os.path.join( - os.path.abspath(os.path.dirname(__file__)), "profiles", "default", filename - ) - if filename not in context.listDirectory(path=None): - logger.info(f"zexp-file {path} does not exist") - return - if name in container.keys(): - if not update: - logger.info(f"Keeping {name}. Import of zexp aborted.") - return - else: - logger.info(f"Purging {name}.") - api.content.delete(container.get(name), check_linkintegrity=False) - - # Import zexp - container._importObjectFromFile(str(path), verify=0) - - # publish all items! - if publish: - new = container[name] - path = "/".join(new.getPhysicalPath()) - catalog = api.portal.get_tool("portal_catalog") - for brain in catalog(path={"query": path, "depth": 2}): - item = brain.getObject() - try: - api.content.transition(item, to_state="published") - except WorkflowException: - pass - - -def link_translations(obj, translation, language): - if obj is translation or obj.language == language: - logger.info( - "Not linking {} to {} ({})".format( - obj.absolute_url(), translation.absolute_url(), language - ) - ) - return - logger.info( - "Linking {} to {} ({})".format( - obj.absolute_url(), translation.absolute_url(), language - ) - ) - ITranslationManager(obj).register_translation(language, translation) + def getNonInstallableProducts(self): + return ["plone.volto"] -# def setup_wpd(portal): -# from datetime import date -# qi = api.portal.get_tool('portal_quickinstaller') -# qi.installProduct('wpd.countdown') -# api.portal.set_registry_record('wpd.countdown.browser.views.IWPDSchema.wpd_date', date(year=2017, month=4, day=28)) # noqa -# api.portal.set_registry_record('wpd.countdown.browser.views.IWPDSchema.wpd_url', 'http://plone.de/world-plone-day/') # noqa +def post_install(distribution, site, answers): + """Post install script for distribution.""" + site.setLayout("language-switcher") + return site diff --git a/frontend/package.json b/frontend/package.json index 05425b4..2df88d8 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -24,6 +24,17 @@ "storybook": "start-storybook -p 6006", "build-storybook": "build-storybook" }, + "addons": [ + "volto-form-block", + "@eeacms/volto-accordion-block", + "@kitconcept/volto-button-block", + "@kitconcept/volto-heading-block", + "@kitconcept/volto-introduction-block", + "@kitconcept/volto-highlight-block", + "@kitconcept/volto-separator-block", + "@kitconcept/volto-slider-block", + "@kitconcept/volto-light-theme" + ], "jest": { "transform": { "^.+\\.js(x)?$": "babel-jest", @@ -122,7 +133,16 @@ "node": "^18 || ^20" }, "dependencies": { - "@plone/volto": "17.15.1" + "@eeacms/volto-accordion-block": "*", + "@kitconcept/volto-button-block": "*", + "@kitconcept/volto-heading-block": "*", + "@kitconcept/volto-highlight-block": "*", + "@kitconcept/volto-introduction-block": "*", + "@kitconcept/volto-light-theme": "*", + "@kitconcept/volto-separator-block": "*", + "@kitconcept/volto-slider-block": "*", + "@plone/volto": "17.15.1", + "volto-form-block": "*" }, "devDependencies": { "@plone/scripts": "^3.3.1", @@ -154,5 +174,6 @@ "volta": { "node": "20.9.0", "yarn": "3.6.0" - } + }, + "theme": "@kitconcept/volto-light-theme" } diff --git a/frontend/src/components/Blocks/System/View.jsx b/frontend/src/components/Blocks/System/View.jsx index 73a59fd..6962b38 100644 --- a/frontend/src/components/Blocks/System/View.jsx +++ b/frontend/src/components/Blocks/System/View.jsx @@ -14,11 +14,7 @@ const SystemView = (props) => { /* eslint-disable react-hooks/exhaustive-deps */ }, []); - return ( -
- -
- ); + return ; }; export default SystemView; diff --git a/frontend/src/customizations/@kitconcept/volto-light-theme/components/Footer/Footer.jsx b/frontend/src/customizations/@kitconcept/volto-light-theme/components/Footer/Footer.jsx new file mode 100644 index 0000000..3dcedd2 --- /dev/null +++ b/frontend/src/customizations/@kitconcept/volto-light-theme/components/Footer/Footer.jsx @@ -0,0 +1,131 @@ +// SemanticUI-free pre-@plone/components +import React from 'react'; + +import { FormattedMessage, defineMessages, injectIntl } from 'react-intl'; +import { useSelector, shallowEqual } from 'react-redux'; +import { UniversalLink, Logo } from '@plone/volto/components'; +import Container from '@kitconcept/volto-light-theme/components/Atoms/Container/Container'; +import { flattenToAppURL, addAppURL } from '@plone/volto/helpers'; +import config from '@plone/volto/registry'; + +const messages = defineMessages({ + copyright: { + id: 'Copyright', + defaultMessage: 'Copyright', + }, +}); + +/** + * Component to display the footer. + * @function Footer + * @param {Object} intl Intl object + * @returns {string} Markup of the component + */ +const Footer = ({ intl }) => { + const { settings } = config; + const { lang, siteActions = [] } = useSelector( + (state) => ({ + lang: state.intl.locale, + siteActions: state.actions?.actions?.site_actions, + }), + shallowEqual, + ); + return ( + + ); +}; + +/** + * Property types. + * @property {Object} propTypes Property types. + * @static + */ +Footer.propTypes = { + /** + * i18n object + */ +}; + +export default injectIntl(Footer); diff --git a/frontend/yarn.lock b/frontend/yarn.lock index a6bb221..068a6ac 100644 --- a/frontend/yarn.lock +++ b/frontend/yarn.lock @@ -1933,6 +1933,22 @@ __metadata: languageName: node linkType: hard +"@eeacms/volto-accordion-block@npm:*": + version: 10.4.6 + resolution: "@eeacms/volto-accordion-block@npm:10.4.6" + dependencies: + "@eeacms/volto-widget-theme-picker": "*" + checksum: 7435b0cddbe7f3b611207e74c2e19bd04af4d2fde1b4439ad19941d10ea29f2f9aae2a0195e63a47ce01de72db27d2f9ce4382a774a82fff7ccc9c9585930013 + languageName: node + linkType: hard + +"@eeacms/volto-widget-theme-picker@npm:*": + version: 1.1.5 + resolution: "@eeacms/volto-widget-theme-picker@npm:1.1.5" + checksum: 20f1469cc82e22edc7a93e418910d8ed458a7975b8e3c4b1d5c19502132327011260a825e492a1418cfff724072e941a97512a7d1713864fc39406587a0307e8 + languageName: node + linkType: hard + "@emotion/babel-plugin@npm:^11.11.0": version: 11.11.0 resolution: "@emotion/babel-plugin@npm:11.11.0" @@ -2335,6 +2351,16 @@ __metadata: languageName: node linkType: hard +"@hcaptcha/react-hcaptcha@npm:^0.3.6": + version: 0.3.10 + resolution: "@hcaptcha/react-hcaptcha@npm:0.3.10" + peerDependencies: + react: ">= 16.3.0" + react-dom: ">= 16.3.0" + checksum: 3b0d6a8c7da8072ba226663d9904051231cc1754936a1082b46764a966004406876971adb8917d3d7c6920283501c1bd5b7886c83e33885c4b8d5218fdc25ff5 + languageName: node + linkType: hard + "@humanwhocodes/config-array@npm:^0.11.11": version: 0.11.11 resolution: "@humanwhocodes/config-array@npm:0.11.11" @@ -2691,6 +2717,76 @@ __metadata: languageName: node linkType: hard +"@kitconcept/volto-button-block@npm:*": + version: 2.3.1 + resolution: "@kitconcept/volto-button-block@npm:2.3.1" + checksum: c8b2dd02d48b3db640784116c92e585267fda6bacf6a856233720e05bbffb9c89dace536176937b38c038b6bd24a452fb880538157f58da35423d558f29c90d2 + languageName: node + linkType: hard + +"@kitconcept/volto-heading-block@npm:*": + version: 2.4.0 + resolution: "@kitconcept/volto-heading-block@npm:2.4.0" + dependencies: + react-contenteditable: 3.3.6 + checksum: baf6814d34286eda9ced00bb8eb8a0683af9a6381a05e5f9d3fe1ccb51e02b37dedda79bb70a2749471084a5ba894620ca548ca9d30c4ca7364a2ef32812e9cd + languageName: node + linkType: hard + +"@kitconcept/volto-highlight-block@npm:*": + version: 3.0.0 + resolution: "@kitconcept/volto-highlight-block@npm:3.0.0" + peerDependencies: + "@plone/volto": ^17.0.0 + checksum: 8ffe16304534d5dfa0b5b2406bd2d3d96506b374c95173ea326aa0ae09ec5ed29ec50fd3434a377177b5d362ce700cd1f2a0750d947abaaf060a48de9c9c58d1 + languageName: node + linkType: hard + +"@kitconcept/volto-introduction-block@npm:*": + version: 1.0.0 + resolution: "@kitconcept/volto-introduction-block@npm:1.0.0" + checksum: 2dd290e7705637e5805d66dfa87bd2d8f5a2eab981faeec78a9aa36b5a6330ee6a1a11003ec251fcbe21b0d185c9b51ac638ade17f45c9fc627468275dc58084 + languageName: node + linkType: hard + +"@kitconcept/volto-light-theme@npm:*": + version: 3.0.1 + resolution: "@kitconcept/volto-light-theme@npm:3.0.1" + peerDependencies: + "@eeacms/volto-accordion-block": ^10.4.0 + "@kitconcept/volto-button-block": ^2.3.1 + "@kitconcept/volto-dsgvo-banner": ^1.3.0 + "@kitconcept/volto-heading-block": ^2.4.0 + "@kitconcept/volto-highlight-block": ^3.0.0 + "@kitconcept/volto-introduction-block": ^1.0.0 + "@kitconcept/volto-separator-block": ^4.0.0 + "@kitconcept/volto-slider-block": ^6.1.0 + "@plone/volto": ^17.15.1 + checksum: c95bc1964231da33e2dacc72d63fa2d544a8a1f68ffaa994a64d5f4941a46761a8da5006ee74f036f66f84cf3414a3d1673fc778a178857b546bc5be516a2e1e + languageName: node + linkType: hard + +"@kitconcept/volto-separator-block@npm:*": + version: 4.1.0 + resolution: "@kitconcept/volto-separator-block@npm:4.1.0" + peerDependencies: + "@plone/volto": ">=16.0.0" + checksum: 3907a7eb7987a39907630ba0b46d1b8eb64a08008e0ad9b894d1347244d09f47c8daad398937cf5ea136697374d0c8352b825c8b2e7c4969367c8125275fdb79 + languageName: node + linkType: hard + +"@kitconcept/volto-slider-block@npm:*": + version: 6.1.1 + resolution: "@kitconcept/volto-slider-block@npm:6.1.1" + dependencies: + deepmerge: 4.2.2 + embla-carousel-react: ^8.0.0-rc15 + peerDependencies: + "@plone/volto": ^17.0.0-alpha.21 + checksum: e5a81af1df855333d6bf69649f620e75bd57a6b5a5a91c4e70e89fd9c2b9996b7a4d39229f39c4c60e785bc5a1efb1c224a9e078b85da1d1bcc6b71c8812e7dc + languageName: node + linkType: hard + "@kwsites/file-exists@npm:^1.1.1": version: 1.1.1 resolution: "@kwsites/file-exists@npm:1.1.1" @@ -10247,6 +10343,13 @@ __metadata: languageName: node linkType: hard +"deepmerge@npm:4.2.2": + version: 4.2.2 + resolution: "deepmerge@npm:4.2.2" + checksum: a8c43a1ed8d6d1ed2b5bf569fa4c8eb9f0924034baf75d5d406e47e157a451075c4db353efea7b6bcc56ec48116a8ce72fccf867b6e078e7c561904b5897530b + languageName: node + linkType: hard + "deepmerge@npm:^1.5.2": version: 1.5.2 resolution: "deepmerge@npm:1.5.2" @@ -10993,6 +11096,34 @@ __metadata: languageName: node linkType: hard +"embla-carousel-react@npm:^8.0.0-rc15": + version: 8.0.0 + resolution: "embla-carousel-react@npm:8.0.0" + dependencies: + embla-carousel: 8.0.0 + embla-carousel-reactive-utils: 8.0.0 + peerDependencies: + react: ^16.8.0 || ^17.0.1 || ^18.0.0 + checksum: 7e4acbb45a1c225222400156427e59dba14312032492e38d862a8ba8dc6c0c55aa9d4bd041aff04faa6bd51cf571fddf718f6f2c72a2ed1a400cd4310c835024 + languageName: node + linkType: hard + +"embla-carousel-reactive-utils@npm:8.0.0": + version: 8.0.0 + resolution: "embla-carousel-reactive-utils@npm:8.0.0" + peerDependencies: + embla-carousel: 8.0.0 + checksum: 5f0ea60fc84d06f4c15481ca56ae67736d27ac802d7b36ed5b03af55425b1dc69c38737446284de7e85b0a6bef4f267a4d985888390630e39bc842b0b2b48d7e + languageName: node + linkType: hard + +"embla-carousel@npm:8.0.0": + version: 8.0.0 + resolution: "embla-carousel@npm:8.0.0" + checksum: 0fef615c0fbd8a8f972f55d8ea8780347394a19453248e5260a7ffb74401a84683b21d7c3e473a9bf4e96cf123756c7735906014ada13c8ba79e311b87bf458c + languageName: node + linkType: hard + "emittery@npm:^0.7.1": version: 0.7.2 resolution: "emittery@npm:0.7.2" @@ -12369,6 +12500,13 @@ __metadata: languageName: node linkType: hard +"file-saver@npm:^2.0.5": + version: 2.0.5 + resolution: "file-saver@npm:2.0.5" + checksum: c62d96e5cebc58b4bdf3ae8a60d5cf9607ad82f75f798c33a4ee63435ac2203002584d5256a2a780eda7feb5e19dc3b6351c2212e58b3f529e63d265a7cc79f7 + languageName: node + linkType: hard + "file-selector@npm:^0.1.12": version: 0.1.19 resolution: "file-selector@npm:0.1.19" @@ -18967,6 +19105,14 @@ __metadata: version: 0.0.0-use.local resolution: "plone6-demo@workspace:." dependencies: + "@eeacms/volto-accordion-block": "*" + "@kitconcept/volto-button-block": "*" + "@kitconcept/volto-heading-block": "*" + "@kitconcept/volto-highlight-block": "*" + "@kitconcept/volto-introduction-block": "*" + "@kitconcept/volto-light-theme": "*" + "@kitconcept/volto-separator-block": "*" + "@kitconcept/volto-slider-block": "*" "@plone/scripts": ^3.3.1 "@plone/volto": 17.15.1 "@storybook/addon-actions": ^6.3.0 @@ -18989,6 +19135,7 @@ __metadata: ts-jest: ^26.4.2 ts-loader: 9.4.4 typescript: 5.2.2 + volto-form-block: "*" languageName: unknown linkType: soft @@ -19888,7 +20035,7 @@ __metadata: languageName: node linkType: hard -"prop-types@npm:15.x, prop-types@npm:^15.0.0, prop-types@npm:^15.5.10, prop-types@npm:^15.5.7, prop-types@npm:^15.5.8, prop-types@npm:^15.6.0, prop-types@npm:^15.6.1, prop-types@npm:^15.6.2, prop-types@npm:^15.7.2, prop-types@npm:^15.8.1": +"prop-types@npm:15.x, prop-types@npm:^15.0.0, prop-types@npm:^15.5.10, prop-types@npm:^15.5.7, prop-types@npm:^15.5.8, prop-types@npm:^15.6.0, prop-types@npm:^15.6.1, prop-types@npm:^15.6.2, prop-types@npm:^15.7.1, prop-types@npm:^15.7.2, prop-types@npm:^15.8.1": version: 15.8.1 resolution: "prop-types@npm:15.8.1" dependencies: @@ -20433,6 +20580,18 @@ __metadata: languageName: node linkType: hard +"react-contenteditable@npm:3.3.6": + version: 3.3.6 + resolution: "react-contenteditable@npm:3.3.6" + dependencies: + fast-deep-equal: ^3.1.3 + prop-types: ^15.7.1 + peerDependencies: + react: ">=16.3" + checksum: 3ff8b78e63ddcdc4b93cf19ec022872116d2d8f672b2ff1b9ae12e9d807b88530d2b17bef2de9ab8a61a182bd9338388f11356cf1681d7c7894642c37be65def + languageName: node + linkType: hard + "react-cookie@npm:4.1.1": version: 4.1.1 resolution: "react-cookie@npm:4.1.1" @@ -20517,7 +20676,7 @@ __metadata: languageName: node linkType: hard -"react-dnd-html5-backend@npm:5.0.1": +"react-dnd-html5-backend@npm:5.0.1, react-dnd-html5-backend@npm:^5.0.1": version: 5.0.1 resolution: "react-dnd-html5-backend@npm:5.0.1" dependencies: @@ -20529,7 +20688,7 @@ __metadata: languageName: node linkType: hard -"react-dnd@npm:5.0.0": +"react-dnd@npm:5.0.0, react-dnd@npm:^5.0.0": version: 5.0.0 resolution: "react-dnd@npm:5.0.0" dependencies: @@ -20646,6 +20805,18 @@ __metadata: languageName: node linkType: hard +"react-google-recaptcha-v3@npm:^1.8.0": + version: 1.10.1 + resolution: "react-google-recaptcha-v3@npm:1.10.1" + dependencies: + hoist-non-react-statics: ^3.3.2 + peerDependencies: + react: ^16.3 || ^17.0 || ^18.0 + react-dom: ^17.0 || ^18.0 + checksum: b5ffe0bc0b13ad9ab2fa7b7acd979c7ff9d4f9d698412eaf8721167883a2ace2b4f3f5386c4b70f59f1cab9f062c368c360dbaa1b2cad4f1645795f3dbdf9355 + languageName: node + linkType: hard + "react-image-gallery@npm:1.2.7": version: 1.2.7 resolution: "react-image-gallery@npm:1.2.7" @@ -25436,6 +25607,33 @@ __metadata: languageName: node linkType: hard +"volto-form-block@npm:*": + version: 3.3.1 + resolution: "volto-form-block@npm:3.3.1" + dependencies: + "@hcaptcha/react-hcaptcha": ^0.3.6 + file-saver: ^2.0.5 + react-google-recaptcha-v3: ^1.8.0 + volto-subblocks: ^2.0.0 + peerDependencies: + "@plone/volto": ">=16.0.0-alpha.38" + volto-subblocks: ^2.0.0 + checksum: 8bd22321126b19e5fccaff8f7783b42f83f7d4cc175d821bfe247c21bc9afcd52c9f301bc7b17ab1dbab0907748cd85e8897d3311ff30a50f84b2ebcc2465581 + languageName: node + linkType: hard + +"volto-subblocks@npm:^2.0.0": + version: 2.0.0 + resolution: "volto-subblocks@npm:2.0.0" + dependencies: + react-dnd: ^5.0.0 + react-dnd-html5-backend: ^5.0.1 + peerDependencies: + "@plone/volto": ">=16.0.0-alpha.38" + checksum: 7e4774cd63aad14d46f8371d725d800cc978dafb3672cb9ddb16e032b8fc849948d7e39301c3d55864a40d5143e101fd819165ba5254a016be31812f826c4f76 + languageName: node + linkType: hard + "w3c-hr-time@npm:^1.0.2": version: 1.0.2 resolution: "w3c-hr-time@npm:1.0.2"