Initial commit
This commit is contained in:
commit
bac11b9701
2
.dockerignore
Normal file
2
.dockerignore
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
/README.md
|
||||||
|
/.github/
|
12
.env.example
Normal file
12
.env.example
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
# Do not edit this file. It is automatically generated by https://www.oliverdavies.uk/build-configs.
|
||||||
|
|
||||||
|
export DOCKER_UID=1000
|
||||||
|
|
||||||
|
export COMPOSE_PROJECT_NAME=oliverdavies-uk
|
||||||
|
export COMPOSE_PROFILES=web,php,database
|
||||||
|
|
||||||
|
export DOCKER_WEB_VOLUME=.:/app
|
||||||
|
|
||||||
|
export MYSQL_DATABASE=app
|
||||||
|
export MYSQL_PASSWORD=app
|
||||||
|
export MYSQL_USER=app
|
25
.github/workflows/ci.yml
vendored
Normal file
25
.github/workflows/ci.yml
vendored
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
name: CI
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
push:
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
env:
|
||||||
|
COMPOSE_DOCKER_CLI_BUILD: 1
|
||||||
|
DOCKER_BUILDKIT: 1
|
||||||
|
DOCKER_UID: 1001
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build_and_test:
|
||||||
|
name: Build and test
|
||||||
|
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout the code
|
||||||
|
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.4
|
||||||
|
|
||||||
|
- name: Build and test
|
||||||
|
run: |
|
||||||
|
./run ci:test
|
45
.gitignore
vendored
Normal file
45
.gitignore
vendored
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
# Do not edit this file. It is automatically generated by https://www.oliverdavies.uk/build-configs.
|
||||||
|
|
||||||
|
.editorconfig
|
||||||
|
.env
|
||||||
|
.gitattributes
|
||||||
|
vendor/
|
||||||
|
web/.csslintrc
|
||||||
|
web/.eslintignore
|
||||||
|
web/.eslintrc.json
|
||||||
|
web/.ht.router.php
|
||||||
|
web/.htaccess
|
||||||
|
web/INSTALL.txt
|
||||||
|
web/README.md
|
||||||
|
web/autoload.php
|
||||||
|
web/core/
|
||||||
|
web/example.gitignore
|
||||||
|
web/index.php
|
||||||
|
web/modules/README.txt
|
||||||
|
web/modules/contrib/
|
||||||
|
web/profiles/README.txt
|
||||||
|
web/robots.txt
|
||||||
|
web/sites/*/files/
|
||||||
|
web/sites/*/private/
|
||||||
|
web/sites/*/services*.yml
|
||||||
|
web/sites/*/settings*.php
|
||||||
|
web/sites/README.txt
|
||||||
|
web/sites/default/default.services.yml
|
||||||
|
web/sites/default/default.settings.php
|
||||||
|
web/sites/development.services.yml
|
||||||
|
web/sites/example.settings.local.php
|
||||||
|
web/sites/example.sites.php
|
||||||
|
web/sites/simpletest/
|
||||||
|
web/themes/README.txt
|
||||||
|
web/themes/contrib/
|
||||||
|
web/update.php
|
||||||
|
web/web.config
|
||||||
|
|
||||||
|
# Docker.
|
||||||
|
.env
|
||||||
|
docker-compose.override.yaml
|
||||||
|
|
||||||
|
|
||||||
|
!/phpstan.neon
|
||||||
|
!/tests/Architecture/**
|
||||||
|
|
2
.hadolint.yaml
Normal file
2
.hadolint.yaml
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
ignore:
|
||||||
|
- DL3059
|
6
.tmuxinator.yaml
Normal file
6
.tmuxinator.yaml
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
name: oliverdavies-uk-drupal
|
||||||
|
root: .
|
||||||
|
|
||||||
|
windows:
|
||||||
|
- vim: nvim
|
||||||
|
- shell:
|
64
Dockerfile
Normal file
64
Dockerfile
Normal file
|
@ -0,0 +1,64 @@
|
||||||
|
# Do not edit this file. It is automatically generated by https://www.oliverdavies.uk/build-configs.
|
||||||
|
|
||||||
|
FROM php:8.2-fpm-bullseye AS base
|
||||||
|
|
||||||
|
COPY --from=composer:2 /usr/bin/composer /usr/bin/composer
|
||||||
|
RUN which composer && composer -V
|
||||||
|
|
||||||
|
ARG DOCKER_UID=1000
|
||||||
|
ENV DOCKER_UID="${DOCKER_UID}"
|
||||||
|
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
RUN adduser --disabled-password --uid "${DOCKER_UID}" app \
|
||||||
|
&& chown app:app -R /app
|
||||||
|
|
||||||
|
USER app
|
||||||
|
|
||||||
|
ENV PATH="${PATH}:/app/bin:/app/vendor/bin"
|
||||||
|
|
||||||
|
COPY --chown=app:app composer.* ./
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
FROM base AS build
|
||||||
|
|
||||||
|
USER root
|
||||||
|
|
||||||
|
|
||||||
|
RUN apt-get update -yqq \
|
||||||
|
&& apt-get install -yqq --no-install-recommends \
|
||||||
|
git libpng-dev libjpeg-dev libzip-dev mariadb-client unzip \
|
||||||
|
&& rm -rf /var/lib/apt/lists/* /usr/share/doc /usr/share/man \
|
||||||
|
&& apt-get clean
|
||||||
|
|
||||||
|
RUN docker-php-ext-configure gd --with-jpeg
|
||||||
|
|
||||||
|
RUN docker-php-ext-install gd pdo_mysql zip
|
||||||
|
|
||||||
|
COPY --chown=app:app phpunit.xml* ./
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
USER app
|
||||||
|
|
||||||
|
RUN composer validate --strict
|
||||||
|
RUN composer install --quiet --no-progress
|
||||||
|
|
||||||
|
COPY --chown=app:app tools/docker/images/php/root /
|
||||||
|
|
||||||
|
ENTRYPOINT ["/usr/local/bin/docker-entrypoint-php"]
|
||||||
|
CMD ["php-fpm"]
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
FROM nginx:1 as web
|
||||||
|
|
||||||
|
EXPOSE 8080
|
||||||
|
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
COPY tools/docker/images/web/root /
|
48
build.yaml
Normal file
48
build.yaml
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
name: oliverdavies-uk
|
||||||
|
type: drupal
|
||||||
|
language: php
|
||||||
|
|
||||||
|
web:
|
||||||
|
type: nginx
|
||||||
|
|
||||||
|
database:
|
||||||
|
type: mariadb
|
||||||
|
version: 10
|
||||||
|
extra_databases: []
|
||||||
|
|
||||||
|
php:
|
||||||
|
version: 8.2-fpm-bullseye
|
||||||
|
phpcs:
|
||||||
|
paths:
|
||||||
|
- web/modules/custom
|
||||||
|
standards:
|
||||||
|
- Drupal
|
||||||
|
phpstan:
|
||||||
|
level: max
|
||||||
|
paths:
|
||||||
|
- web/modules/custom
|
||||||
|
|
||||||
|
drupal:
|
||||||
|
docroot: web
|
||||||
|
|
||||||
|
docker-compose:
|
||||||
|
services:
|
||||||
|
- database
|
||||||
|
- php
|
||||||
|
- web
|
||||||
|
|
||||||
|
dockerfile:
|
||||||
|
stages:
|
||||||
|
build:
|
||||||
|
extra_directories: []
|
||||||
|
commands:
|
||||||
|
- composer validate --strict
|
||||||
|
- composer install --quiet --no-progress
|
||||||
|
|
||||||
|
git:
|
||||||
|
ignore:
|
||||||
|
- '!/phpstan.neon'
|
||||||
|
- '!/tests/Architecture/**'
|
||||||
|
|
||||||
|
experimental:
|
||||||
|
createGitHubActionsConfiguration: true
|
101
composer.json
Normal file
101
composer.json
Normal file
|
@ -0,0 +1,101 @@
|
||||||
|
{
|
||||||
|
"name": "drupal/recommended-project",
|
||||||
|
"description": "Project template for Drupal projects with a relocated document root",
|
||||||
|
"type": "project",
|
||||||
|
"license": "GPL-2.0-or-later",
|
||||||
|
"homepage": "https://www.drupal.org/project/drupal",
|
||||||
|
"support": {
|
||||||
|
"docs": "https://www.drupal.org/docs/user_guide/en/index.html",
|
||||||
|
"chat": "https://www.drupal.org/node/314178"
|
||||||
|
},
|
||||||
|
"repositories": [
|
||||||
|
{
|
||||||
|
"type": "composer",
|
||||||
|
"url": "https://packages.drupal.org/8"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"require": {
|
||||||
|
"composer/installers": "^2.0",
|
||||||
|
"drupal/admin_toolbar": "^3.4",
|
||||||
|
"drupal/core-composer-scaffold": "^10.2",
|
||||||
|
"drupal/core-project-message": "^10.2",
|
||||||
|
"drupal/core-recommended": "^10.2",
|
||||||
|
"drupal/layout_builder_modal": "^1.2",
|
||||||
|
"drupal/pathauto": "^1.12",
|
||||||
|
"drupal/redirect": "^1.9",
|
||||||
|
"drush/drush": "^12.5"
|
||||||
|
},
|
||||||
|
"conflict": {
|
||||||
|
"drupal/drupal": "*"
|
||||||
|
},
|
||||||
|
"minimum-stability": "stable",
|
||||||
|
"prefer-stable": true,
|
||||||
|
"config": {
|
||||||
|
"allow-plugins": {
|
||||||
|
"composer/installers": true,
|
||||||
|
"drupal/core-composer-scaffold": true,
|
||||||
|
"drupal/core-project-message": true,
|
||||||
|
"phpstan/extension-installer": true,
|
||||||
|
"dealerdirect/phpcodesniffer-composer-installer": true,
|
||||||
|
"php-http/discovery": true
|
||||||
|
},
|
||||||
|
"sort-packages": true
|
||||||
|
},
|
||||||
|
"extra": {
|
||||||
|
"drupal-scaffold": {
|
||||||
|
"locations": {
|
||||||
|
"web-root": "web/"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"installer-paths": {
|
||||||
|
"web/core": [
|
||||||
|
"type:drupal-core"
|
||||||
|
],
|
||||||
|
"web/libraries/{$name}": [
|
||||||
|
"type:drupal-library"
|
||||||
|
],
|
||||||
|
"web/modules/contrib/{$name}": [
|
||||||
|
"type:drupal-module"
|
||||||
|
],
|
||||||
|
"web/profiles/contrib/{$name}": [
|
||||||
|
"type:drupal-profile"
|
||||||
|
],
|
||||||
|
"web/themes/contrib/{$name}": [
|
||||||
|
"type:drupal-theme"
|
||||||
|
],
|
||||||
|
"drush/Commands/contrib/{$name}": [
|
||||||
|
"type:drupal-drush"
|
||||||
|
],
|
||||||
|
"web/modules/custom/{$name}": [
|
||||||
|
"type:drupal-custom-module"
|
||||||
|
],
|
||||||
|
"web/profiles/custom/{$name}": [
|
||||||
|
"type:drupal-custom-profile"
|
||||||
|
],
|
||||||
|
"web/themes/custom/{$name}": [
|
||||||
|
"type:drupal-custom-theme"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"drupal-core-project-message": {
|
||||||
|
"include-keys": [
|
||||||
|
"homepage",
|
||||||
|
"support"
|
||||||
|
],
|
||||||
|
"post-create-project-cmd-message": [
|
||||||
|
"<bg=blue;fg=white> </>",
|
||||||
|
"<bg=blue;fg=white> Congratulations, you’ve installed the Drupal codebase </>",
|
||||||
|
"<bg=blue;fg=white> from the drupal/recommended-project template! </>",
|
||||||
|
"<bg=blue;fg=white> </>",
|
||||||
|
"",
|
||||||
|
"<bg=yellow;fg=black>Next steps</>:",
|
||||||
|
" * Install the site: https://www.drupal.org/docs/installing-drupal",
|
||||||
|
" * Read the user guide: https://www.drupal.org/docs/user_guide/en/index.html",
|
||||||
|
" * Get support: https://www.drupal.org/support",
|
||||||
|
" * Get involved with the Drupal community:",
|
||||||
|
" https://www.drupal.org/getting-involved",
|
||||||
|
" * Remove the plugin that prints this message:",
|
||||||
|
" composer remove drupal/core-project-message"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
6534
composer.lock
generated
Normal file
6534
composer.lock
generated
Normal file
File diff suppressed because it is too large
Load diff
3
config/sync/admin_toolbar.settings.yml
Normal file
3
config/sync/admin_toolbar.settings.yml
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
_core:
|
||||||
|
default_config_hash: jvTSppzcgH5wnzBhX5xnAExcp2I1CzkQ_aky65XNfYI
|
||||||
|
menu_depth: 4
|
5
config/sync/admin_toolbar_tools.settings.yml
Normal file
5
config/sync/admin_toolbar_tools.settings.yml
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
_core:
|
||||||
|
default_config_hash: WgdZsrd_5w9jlmcHV4R9dD2tG9OZEkYo4I_O8h7Gq8Q
|
||||||
|
max_bundle_number: 20
|
||||||
|
hoverintent_functionality: true
|
||||||
|
show_local_tasks: false
|
5
config/sync/announcements_feed.settings.yml
Normal file
5
config/sync/announcements_feed.settings.yml
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
_core:
|
||||||
|
default_config_hash: 0G5pZBcxbg8ONYzNLd1RJIsvuFFewm9htnS4I-ABKJ8
|
||||||
|
max_age: 86400
|
||||||
|
cron_interval: 21600
|
||||||
|
limit: 10
|
3
config/sync/automated_cron.settings.yml
Normal file
3
config/sync/automated_cron.settings.yml
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
_core:
|
||||||
|
default_config_hash: fUksROt4FfkAU9BV4hV2XvhTBSS2nTNrZS4U7S-tKrs
|
||||||
|
interval: 10800
|
22
config/sync/block.block.claro_breadcrumbs.yml
Normal file
22
config/sync/block.block.claro_breadcrumbs.yml
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
uuid: aaf84a01-8f97-4943-9a71-318b8fdc793f
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- system
|
||||||
|
theme:
|
||||||
|
- claro
|
||||||
|
_core:
|
||||||
|
default_config_hash: NjcxOBrPOiK5-38t56DwFBDVY4yer7YSlbRWXFuHe7A
|
||||||
|
id: claro_breadcrumbs
|
||||||
|
theme: claro
|
||||||
|
region: breadcrumb
|
||||||
|
weight: 0
|
||||||
|
provider: null
|
||||||
|
plugin: system_breadcrumb_block
|
||||||
|
settings:
|
||||||
|
id: system_breadcrumb_block
|
||||||
|
label: Breadcrumbs
|
||||||
|
label_display: '0'
|
||||||
|
provider: system
|
||||||
|
visibility: { }
|
22
config/sync/block.block.claro_content.yml
Normal file
22
config/sync/block.block.claro_content.yml
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
uuid: 555a3bb6-5091-4dc0-b0ef-f04024e369b1
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- system
|
||||||
|
theme:
|
||||||
|
- claro
|
||||||
|
_core:
|
||||||
|
default_config_hash: a0Yyx1GeyKarZ4T_yXQBR_ZFKnXiFLtxAb6gWLd8nr0
|
||||||
|
id: claro_content
|
||||||
|
theme: claro
|
||||||
|
region: content
|
||||||
|
weight: 0
|
||||||
|
provider: null
|
||||||
|
plugin: system_main_block
|
||||||
|
settings:
|
||||||
|
id: system_main_block
|
||||||
|
label: 'Main page content'
|
||||||
|
label_display: '0'
|
||||||
|
provider: system
|
||||||
|
visibility: { }
|
22
config/sync/block.block.claro_help.yml
Normal file
22
config/sync/block.block.claro_help.yml
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
uuid: 45346870-2ae2-4a8c-b583-5c1a9ed048f3
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- help
|
||||||
|
theme:
|
||||||
|
- claro
|
||||||
|
_core:
|
||||||
|
default_config_hash: jccFSSVqV0WCDb6NtML1VWAWTtDbZ-zn5YgTRMgMrIM
|
||||||
|
id: claro_help
|
||||||
|
theme: claro
|
||||||
|
region: help
|
||||||
|
weight: 0
|
||||||
|
provider: null
|
||||||
|
plugin: help_block
|
||||||
|
settings:
|
||||||
|
id: help_block
|
||||||
|
label: Help
|
||||||
|
label_display: '0'
|
||||||
|
provider: help
|
||||||
|
visibility: { }
|
32
config/sync/block.block.claro_help_search.yml
Normal file
32
config/sync/block.block.claro_help_search.yml
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
uuid: ecdb3e7d-0d2e-4d32-86a0-00de8ffbdeb8
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- search
|
||||||
|
- system
|
||||||
|
theme:
|
||||||
|
- claro
|
||||||
|
enforced:
|
||||||
|
config:
|
||||||
|
- search.page.help_search
|
||||||
|
_core:
|
||||||
|
default_config_hash: 2ToeZLvlHKTeFY74gpgu1PejLoFyCECLO_gw6rAZwqw
|
||||||
|
id: claro_help_search
|
||||||
|
theme: claro
|
||||||
|
region: help
|
||||||
|
weight: -4
|
||||||
|
provider: null
|
||||||
|
plugin: search_form_block
|
||||||
|
settings:
|
||||||
|
id: search_form_block
|
||||||
|
label: 'Search help'
|
||||||
|
label_display: visible
|
||||||
|
provider: search
|
||||||
|
page_id: help_search
|
||||||
|
visibility:
|
||||||
|
request_path:
|
||||||
|
id: request_path
|
||||||
|
negate: false
|
||||||
|
context_mapping: { }
|
||||||
|
pages: /admin/help
|
20
config/sync/block.block.claro_local_actions.yml
Normal file
20
config/sync/block.block.claro_local_actions.yml
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
uuid: c945fbe4-c83e-4224-a7db-645acd641fdc
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
theme:
|
||||||
|
- claro
|
||||||
|
_core:
|
||||||
|
default_config_hash: CdXfDmRgAvms7EQovxxWPdYi0GitxeRbVtScYK16ZH0
|
||||||
|
id: claro_local_actions
|
||||||
|
theme: claro
|
||||||
|
region: content
|
||||||
|
weight: -10
|
||||||
|
provider: null
|
||||||
|
plugin: local_actions_block
|
||||||
|
settings:
|
||||||
|
id: local_actions_block
|
||||||
|
label: 'Primary admin actions'
|
||||||
|
label_display: '0'
|
||||||
|
provider: core
|
||||||
|
visibility: { }
|
22
config/sync/block.block.claro_messages.yml
Normal file
22
config/sync/block.block.claro_messages.yml
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
uuid: 2aa70b97-1987-4460-9f1f-c61e66eabbcc
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- system
|
||||||
|
theme:
|
||||||
|
- claro
|
||||||
|
_core:
|
||||||
|
default_config_hash: '-Ac3ISpIT0PQ-whzD7_dw0SdKi6dAbRFNWdSjOiVDqg'
|
||||||
|
id: claro_messages
|
||||||
|
theme: claro
|
||||||
|
region: highlighted
|
||||||
|
weight: 0
|
||||||
|
provider: null
|
||||||
|
plugin: system_messages_block
|
||||||
|
settings:
|
||||||
|
id: system_messages_block
|
||||||
|
label: 'Status messages'
|
||||||
|
label_display: '0'
|
||||||
|
provider: system
|
||||||
|
visibility: { }
|
20
config/sync/block.block.claro_page_title.yml
Normal file
20
config/sync/block.block.claro_page_title.yml
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
uuid: 7535cd49-4e94-417f-a9cb-567e4169e8f1
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
theme:
|
||||||
|
- claro
|
||||||
|
_core:
|
||||||
|
default_config_hash: fNwDdW063tk_ktzSWzZVeQS9wzvLooVO280BQ9WrsIs
|
||||||
|
id: claro_page_title
|
||||||
|
theme: claro
|
||||||
|
region: header
|
||||||
|
weight: -30
|
||||||
|
provider: null
|
||||||
|
plugin: page_title_block
|
||||||
|
settings:
|
||||||
|
id: page_title_block
|
||||||
|
label: 'Page title'
|
||||||
|
label_display: '0'
|
||||||
|
provider: core
|
||||||
|
visibility: { }
|
22
config/sync/block.block.claro_primary_local_tasks.yml
Normal file
22
config/sync/block.block.claro_primary_local_tasks.yml
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
uuid: 64533454-ac6b-4f1a-b0a6-154754807ab9
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
theme:
|
||||||
|
- claro
|
||||||
|
_core:
|
||||||
|
default_config_hash: ACjBZI5shAMiiUpsz-inLYVXDqNNXRnSzAWV3kV_8Hw
|
||||||
|
id: claro_primary_local_tasks
|
||||||
|
theme: claro
|
||||||
|
region: header
|
||||||
|
weight: 0
|
||||||
|
provider: null
|
||||||
|
plugin: local_tasks_block
|
||||||
|
settings:
|
||||||
|
id: local_tasks_block
|
||||||
|
label: 'Primary tabs'
|
||||||
|
label_display: '0'
|
||||||
|
provider: core
|
||||||
|
primary: true
|
||||||
|
secondary: false
|
||||||
|
visibility: { }
|
22
config/sync/block.block.claro_secondary_local_tasks.yml
Normal file
22
config/sync/block.block.claro_secondary_local_tasks.yml
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
uuid: 9576655f-d208-43ef-b8d8-fee880c754ff
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
theme:
|
||||||
|
- claro
|
||||||
|
_core:
|
||||||
|
default_config_hash: 2L0geP-ixCbCkEpW6BVF6H7vDUZN4ea07_Y9CociQm4
|
||||||
|
id: claro_secondary_local_tasks
|
||||||
|
theme: claro
|
||||||
|
region: pre_content
|
||||||
|
weight: 0
|
||||||
|
provider: null
|
||||||
|
plugin: local_tasks_block
|
||||||
|
settings:
|
||||||
|
id: local_tasks_block
|
||||||
|
label: 'Secondary tabs'
|
||||||
|
label_display: '0'
|
||||||
|
provider: core
|
||||||
|
primary: false
|
||||||
|
secondary: true
|
||||||
|
visibility: { }
|
25
config/sync/block.block.opdavies_aboutme.yml
Normal file
25
config/sync/block.block.opdavies_aboutme.yml
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
uuid: 4f269cef-3a8f-46ad-bd6d-6726115ebb6b
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
content:
|
||||||
|
- 'block_content:about_me:9e79ff11-4bd0-4dc1-b366-aafc61e6f7a5'
|
||||||
|
module:
|
||||||
|
- block_content
|
||||||
|
theme:
|
||||||
|
- opdavies
|
||||||
|
id: opdavies_aboutme
|
||||||
|
theme: opdavies
|
||||||
|
region: content
|
||||||
|
weight: 0
|
||||||
|
provider: null
|
||||||
|
plugin: 'block_content:9e79ff11-4bd0-4dc1-b366-aafc61e6f7a5'
|
||||||
|
settings:
|
||||||
|
id: 'block_content:9e79ff11-4bd0-4dc1-b366-aafc61e6f7a5'
|
||||||
|
label: 'About me'
|
||||||
|
label_display: visible
|
||||||
|
provider: block_content
|
||||||
|
status: true
|
||||||
|
info: ''
|
||||||
|
view_mode: full
|
||||||
|
visibility: { }
|
22
config/sync/block.block.opdavies_content.yml
Normal file
22
config/sync/block.block.opdavies_content.yml
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
uuid: 1e99f4a3-8979-45f4-b4e5-904ee26bf210
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- system
|
||||||
|
theme:
|
||||||
|
- opdavies
|
||||||
|
_core:
|
||||||
|
default_config_hash: erQSEZF2XUjNmgTl0uNRBzmg18ZGXwUcw2FhApoeuHk
|
||||||
|
id: opdavies_content
|
||||||
|
theme: opdavies
|
||||||
|
region: content
|
||||||
|
weight: -4
|
||||||
|
provider: null
|
||||||
|
plugin: system_main_block
|
||||||
|
settings:
|
||||||
|
id: system_main_block
|
||||||
|
label: 'Main page content'
|
||||||
|
label_display: '0'
|
||||||
|
provider: system
|
||||||
|
visibility: { }
|
27
config/sync/block.block.opdavies_main_menu.yml
Normal file
27
config/sync/block.block.opdavies_main_menu.yml
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
uuid: 87ff177e-c6fa-4c30-a210-6c727cc84980
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
config:
|
||||||
|
- system.menu.main
|
||||||
|
module:
|
||||||
|
- system
|
||||||
|
theme:
|
||||||
|
- opdavies
|
||||||
|
_core:
|
||||||
|
default_config_hash: KWAiziL39uEzmOJEql_wbUP2RtqGceL3WM2CfxhMelE
|
||||||
|
id: opdavies_main_menu
|
||||||
|
theme: opdavies
|
||||||
|
region: primary_menu
|
||||||
|
weight: 0
|
||||||
|
provider: null
|
||||||
|
plugin: 'system_menu_block:main'
|
||||||
|
settings:
|
||||||
|
id: 'system_menu_block:main'
|
||||||
|
label: 'Main navigation'
|
||||||
|
label_display: '0'
|
||||||
|
provider: system
|
||||||
|
level: 1
|
||||||
|
depth: 2
|
||||||
|
expand_all_items: true
|
||||||
|
visibility: { }
|
22
config/sync/block.block.opdavies_messages.yml
Normal file
22
config/sync/block.block.opdavies_messages.yml
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
uuid: 6b58e708-cbe5-4782-ae07-e763c8b56933
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- system
|
||||||
|
theme:
|
||||||
|
- opdavies
|
||||||
|
_core:
|
||||||
|
default_config_hash: BZ5tpW7H8X4PVGRm3MImTIHd2tN0eF7zOtp4SpRYUA0
|
||||||
|
id: opdavies_messages
|
||||||
|
theme: opdavies
|
||||||
|
region: highlighted
|
||||||
|
weight: -5
|
||||||
|
provider: null
|
||||||
|
plugin: system_messages_block
|
||||||
|
settings:
|
||||||
|
id: system_messages_block
|
||||||
|
label: 'Status messages'
|
||||||
|
label_display: '0'
|
||||||
|
provider: system
|
||||||
|
visibility: { }
|
20
config/sync/block.block.opdavies_page_title.yml
Normal file
20
config/sync/block.block.opdavies_page_title.yml
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
uuid: 1603fdad-0845-49ee-bf22-11fe5c675200
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
theme:
|
||||||
|
- opdavies
|
||||||
|
_core:
|
||||||
|
default_config_hash: 6aOgWsNTXjqrDm98TXSAjP6qd2nCijD1xw45MrnbK-Y
|
||||||
|
id: opdavies_page_title
|
||||||
|
theme: opdavies
|
||||||
|
region: content
|
||||||
|
weight: -5
|
||||||
|
provider: null
|
||||||
|
plugin: page_title_block
|
||||||
|
settings:
|
||||||
|
id: page_title_block
|
||||||
|
label: 'Page title'
|
||||||
|
label_display: '0'
|
||||||
|
provider: core
|
||||||
|
visibility: { }
|
20
config/sync/block.block.opdavies_primary_admin_actions.yml
Normal file
20
config/sync/block.block.opdavies_primary_admin_actions.yml
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
uuid: b019dc1e-8ba0-46e9-8d9a-f068f37ed884
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
theme:
|
||||||
|
- opdavies
|
||||||
|
_core:
|
||||||
|
default_config_hash: Q9_2whdOj1YIomfvsIfopROW4FT_X5pY0DjdOiOaQ5U
|
||||||
|
id: opdavies_primary_admin_actions
|
||||||
|
theme: opdavies
|
||||||
|
region: highlighted
|
||||||
|
weight: -5
|
||||||
|
provider: null
|
||||||
|
plugin: local_actions_block
|
||||||
|
settings:
|
||||||
|
id: local_actions_block
|
||||||
|
label: 'Primary admin actions'
|
||||||
|
label_display: '0'
|
||||||
|
provider: core
|
||||||
|
visibility: { }
|
22
config/sync/block.block.opdavies_primary_local_tasks.yml
Normal file
22
config/sync/block.block.opdavies_primary_local_tasks.yml
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
uuid: 8304a9e4-0195-4203-952e-366d22cd403d
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
theme:
|
||||||
|
- opdavies
|
||||||
|
_core:
|
||||||
|
default_config_hash: nGE3EoPQQaQCuqTUtZgw0-KIzmrqdKDzdNQf2JyPUt4
|
||||||
|
id: opdavies_primary_local_tasks
|
||||||
|
theme: opdavies
|
||||||
|
region: highlighted
|
||||||
|
weight: -4
|
||||||
|
provider: null
|
||||||
|
plugin: local_tasks_block
|
||||||
|
settings:
|
||||||
|
id: local_tasks_block
|
||||||
|
label: 'Primary tabs'
|
||||||
|
label_display: '0'
|
||||||
|
provider: core
|
||||||
|
primary: true
|
||||||
|
secondary: false
|
||||||
|
visibility: { }
|
22
config/sync/block.block.opdavies_secondary_local_tasks.yml
Normal file
22
config/sync/block.block.opdavies_secondary_local_tasks.yml
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
uuid: e42f3963-a8f0-4965-8f15-47aa4167cff8
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
theme:
|
||||||
|
- opdavies
|
||||||
|
_core:
|
||||||
|
default_config_hash: ydSxdq7R66I8UMC460rOzlfzvlUL4VRbdwc6z9DWaUI
|
||||||
|
id: opdavies_secondary_local_tasks
|
||||||
|
theme: opdavies
|
||||||
|
region: highlighted
|
||||||
|
weight: -2
|
||||||
|
provider: null
|
||||||
|
plugin: local_tasks_block
|
||||||
|
settings:
|
||||||
|
id: local_tasks_block
|
||||||
|
label: 'Secondary tabs'
|
||||||
|
label_display: '0'
|
||||||
|
provider: core
|
||||||
|
primary: false
|
||||||
|
secondary: true
|
||||||
|
visibility: { }
|
25
config/sync/block.block.opdavies_site_branding.yml
Normal file
25
config/sync/block.block.opdavies_site_branding.yml
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
uuid: 1faadcd9-b239-40e7-ad6f-ce150ccd14fd
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- system
|
||||||
|
theme:
|
||||||
|
- opdavies
|
||||||
|
_core:
|
||||||
|
default_config_hash: n_nlgjggHVfQt2H__zvLOKB2YtjPDbQ5tHijF9LE1aM
|
||||||
|
id: opdavies_site_branding
|
||||||
|
theme: opdavies
|
||||||
|
region: header
|
||||||
|
weight: 0
|
||||||
|
provider: null
|
||||||
|
plugin: system_branding_block
|
||||||
|
settings:
|
||||||
|
id: system_branding_block
|
||||||
|
label: 'Site branding'
|
||||||
|
label_display: '0'
|
||||||
|
provider: system
|
||||||
|
use_site_logo: true
|
||||||
|
use_site_name: true
|
||||||
|
use_site_slogan: false
|
||||||
|
visibility: { }
|
8
config/sync/block_content.type.about_me.yml
Normal file
8
config/sync/block_content.type.about_me.yml
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
uuid: 164cece2-54d2-424b-9e72-ff3fbb54b4ae
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies: { }
|
||||||
|
id: about_me
|
||||||
|
label: 'About me block'
|
||||||
|
revision: 1
|
||||||
|
description: ''
|
10
config/sync/block_content.type.basic.yml
Normal file
10
config/sync/block_content.type.basic.yml
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
uuid: 94be5da0-f713-4810-8734-479c883799d4
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies: { }
|
||||||
|
_core:
|
||||||
|
default_config_hash: zglzjmYxi0G0ag9MZ02y0LSJOdpWRwJxyP_OvFojFyo
|
||||||
|
id: basic
|
||||||
|
label: 'Basic block'
|
||||||
|
revision: 0
|
||||||
|
description: 'A basic block contains a title and a body.'
|
8
config/sync/block_content.type.button.yml
Normal file
8
config/sync/block_content.type.button.yml
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
uuid: 6376322c-c42e-4f82-87ed-9e08b6e79071
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies: { }
|
||||||
|
id: button
|
||||||
|
label: 'Button block'
|
||||||
|
revision: 1
|
||||||
|
description: ''
|
8
config/sync/block_content.type.testimonials.yml
Normal file
8
config/sync/block_content.type.testimonials.yml
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
uuid: e721095d-2c4d-43c9-8001-0015585ad55a
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies: { }
|
||||||
|
id: testimonials
|
||||||
|
label: 'Testimonials block'
|
||||||
|
revision: 1
|
||||||
|
description: ''
|
12
config/sync/claro.settings.yml
Normal file
12
config/sync/claro.settings.yml
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
favicon:
|
||||||
|
use_default: true
|
||||||
|
features:
|
||||||
|
comment_user_picture: true
|
||||||
|
comment_user_verification: true
|
||||||
|
favicon: true
|
||||||
|
node_user_picture: true
|
||||||
|
logo:
|
||||||
|
use_default: true
|
||||||
|
third_party_settings:
|
||||||
|
shortcut:
|
||||||
|
module_link: true
|
3
config/sync/comment.settings.yml
Normal file
3
config/sync/comment.settings.yml
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
_core:
|
||||||
|
default_config_hash: YNUW2Ij5uE7a4oaXp3i_2lvaFdYM1zNKPPfnEjB0jEc
|
||||||
|
log_ip_addresses: false
|
10
config/sync/comment.type.comment.yml
Normal file
10
config/sync/comment.type.comment.yml
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
uuid: 1e244b0a-238e-4762-8c37-138a8a127e8d
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies: { }
|
||||||
|
_core:
|
||||||
|
default_config_hash: bqZsN31T2n0UjcbyCpOPi9D2iO0sAOHR7FnEs9qMvaA
|
||||||
|
id: comment
|
||||||
|
label: 'Default comments'
|
||||||
|
target_entity_type_id: node
|
||||||
|
description: 'Allows commenting on content'
|
14
config/sync/contact.form.feedback.yml
Normal file
14
config/sync/contact.form.feedback.yml
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
uuid: 27fda118-5a9f-48a6-bc4b-63055217a0af
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies: { }
|
||||||
|
_core:
|
||||||
|
default_config_hash: vymHlgJy26BuI5GGj9-IXjwR3dRC5C0tij4BpWJnoqw
|
||||||
|
id: feedback
|
||||||
|
label: 'Website feedback'
|
||||||
|
recipients:
|
||||||
|
- admin@example.com
|
||||||
|
reply: ''
|
||||||
|
weight: 0
|
||||||
|
message: 'Your message has been sent.'
|
||||||
|
redirect: ''
|
13
config/sync/contact.form.personal.yml
Normal file
13
config/sync/contact.form.personal.yml
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
uuid: 5f5f1cef-e2f3-4f91-8b0e-6bb53dea2d3c
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies: { }
|
||||||
|
_core:
|
||||||
|
default_config_hash: jonvgt3CkUM2eMLTFwWfHileWWDC4YtXCuIlCahTk_I
|
||||||
|
id: personal
|
||||||
|
label: 'Personal contact form'
|
||||||
|
recipients: { }
|
||||||
|
reply: ''
|
||||||
|
weight: 0
|
||||||
|
message: 'Your message has been sent.'
|
||||||
|
redirect: ''
|
7
config/sync/contact.settings.yml
Normal file
7
config/sync/contact.settings.yml
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
_core:
|
||||||
|
default_config_hash: U69DBeuvXuNVOC15rVNaBjDPK2fWFbo9v4takdYSSO8
|
||||||
|
default_form: feedback
|
||||||
|
flood:
|
||||||
|
limit: 5
|
||||||
|
interval: 3600
|
||||||
|
user_default_enabled: true
|
24
config/sync/core.base_field_override.node.page.promote.yml
Normal file
24
config/sync/core.base_field_override.node.page.promote.yml
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
uuid: 450e687d-0d33-44e4-9bd5-5f917a0093a9
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
config:
|
||||||
|
- node.type.page
|
||||||
|
_core:
|
||||||
|
default_config_hash: fPUEnm4T5zfZRr3ttDUqq7yCDd2uW3clWD-pvos4tlQ
|
||||||
|
id: node.page.promote
|
||||||
|
field_name: promote
|
||||||
|
entity_type: node
|
||||||
|
bundle: page
|
||||||
|
label: 'Promoted to front page'
|
||||||
|
description: ''
|
||||||
|
required: false
|
||||||
|
translatable: false
|
||||||
|
default_value:
|
||||||
|
-
|
||||||
|
value: 0
|
||||||
|
default_value_callback: ''
|
||||||
|
settings:
|
||||||
|
on_label: 'On'
|
||||||
|
off_label: 'Off'
|
||||||
|
field_type: boolean
|
|
@ -0,0 +1,22 @@
|
||||||
|
uuid: 66697076-3ac7-418d-88d4-e002ebb30d76
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
config:
|
||||||
|
- node.type.testimonial
|
||||||
|
id: node.testimonial.promote
|
||||||
|
field_name: promote
|
||||||
|
entity_type: node
|
||||||
|
bundle: testimonial
|
||||||
|
label: 'Promoted to front page'
|
||||||
|
description: ''
|
||||||
|
required: false
|
||||||
|
translatable: true
|
||||||
|
default_value:
|
||||||
|
-
|
||||||
|
value: 0
|
||||||
|
default_value_callback: ''
|
||||||
|
settings:
|
||||||
|
on_label: 'On'
|
||||||
|
off_label: 'Off'
|
||||||
|
field_type: boolean
|
|
@ -0,0 +1,18 @@
|
||||||
|
uuid: daa6e669-9e18-48e9-bb99-6f7207eff659
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
config:
|
||||||
|
- node.type.testimonial
|
||||||
|
id: node.testimonial.title
|
||||||
|
field_name: title
|
||||||
|
entity_type: node
|
||||||
|
bundle: testimonial
|
||||||
|
label: Name
|
||||||
|
description: ''
|
||||||
|
required: true
|
||||||
|
translatable: true
|
||||||
|
default_value: { }
|
||||||
|
default_value_callback: ''
|
||||||
|
settings: { }
|
||||||
|
field_type: string
|
10
config/sync/core.date_format.fallback.yml
Normal file
10
config/sync/core.date_format.fallback.yml
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
uuid: 403446f7-bfce-48db-97b7-d6d1db46a9b7
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies: { }
|
||||||
|
_core:
|
||||||
|
default_config_hash: 7klS5IWXrwzVaPpYZFAs6wcx8U2FF1X73OfrtTsvuvE
|
||||||
|
id: fallback
|
||||||
|
label: 'Fallback date format'
|
||||||
|
locked: true
|
||||||
|
pattern: 'D, m/d/Y - H:i'
|
10
config/sync/core.date_format.html_date.yml
Normal file
10
config/sync/core.date_format.html_date.yml
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
uuid: afdc1524-8c7d-4a56-a714-71ea18f73f1c
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies: { }
|
||||||
|
_core:
|
||||||
|
default_config_hash: EOQltUQPmgc6UQ2rcJ4Xi_leCEJj5ui0TR-12duS-Tk
|
||||||
|
id: html_date
|
||||||
|
label: 'HTML Date'
|
||||||
|
locked: true
|
||||||
|
pattern: Y-m-d
|
10
config/sync/core.date_format.html_datetime.yml
Normal file
10
config/sync/core.date_format.html_datetime.yml
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
uuid: d3849e25-539e-4776-952c-5e235e2dd3fe
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies: { }
|
||||||
|
_core:
|
||||||
|
default_config_hash: jxfClwZIRXIdcvMrE--WkcZxDGUVoOIE3Sm2NRZlFuE
|
||||||
|
id: html_datetime
|
||||||
|
label: 'HTML Datetime'
|
||||||
|
locked: true
|
||||||
|
pattern: 'Y-m-d\TH:i:sO'
|
10
config/sync/core.date_format.html_month.yml
Normal file
10
config/sync/core.date_format.html_month.yml
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
uuid: 12823804-9bca-4867-be52-2532360b4ee3
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies: { }
|
||||||
|
_core:
|
||||||
|
default_config_hash: Z7KuCUwM_WdTNvLcoltuX3_8d-s-8FZkTN6KgNwF0eM
|
||||||
|
id: html_month
|
||||||
|
label: 'HTML Month'
|
||||||
|
locked: true
|
||||||
|
pattern: Y-m
|
10
config/sync/core.date_format.html_time.yml
Normal file
10
config/sync/core.date_format.html_time.yml
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
uuid: 8aaeae43-434e-4768-b2be-a30146a5a94b
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies: { }
|
||||||
|
_core:
|
||||||
|
default_config_hash: M7yqicYkU36hRy5p9drAaGBBihhUD1OyujFrAaQ93ZE
|
||||||
|
id: html_time
|
||||||
|
label: 'HTML Time'
|
||||||
|
locked: true
|
||||||
|
pattern: 'H:i:s'
|
10
config/sync/core.date_format.html_week.yml
Normal file
10
config/sync/core.date_format.html_week.yml
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
uuid: 58e2187e-ebc8-4b99-8d89-9a25dcee5dc3
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies: { }
|
||||||
|
_core:
|
||||||
|
default_config_hash: wKD4WsoV_wFgv2vgI4mcAAFSIzrye17ykzdwrnApkfY
|
||||||
|
id: html_week
|
||||||
|
label: 'HTML Week'
|
||||||
|
locked: true
|
||||||
|
pattern: Y-\WW
|
10
config/sync/core.date_format.html_year.yml
Normal file
10
config/sync/core.date_format.html_year.yml
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
uuid: c71713fb-693b-45ba-88d9-91893cb461ba
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies: { }
|
||||||
|
_core:
|
||||||
|
default_config_hash: OjekiQuX9RbVQ2_8jOHBL94RgYLePqX7wpfNGgcQzrk
|
||||||
|
id: html_year
|
||||||
|
label: 'HTML Year'
|
||||||
|
locked: true
|
||||||
|
pattern: 'Y'
|
10
config/sync/core.date_format.html_yearless_date.yml
Normal file
10
config/sync/core.date_format.html_yearless_date.yml
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
uuid: 56def571-c43f-4538-a805-baa6fa21bcea
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies: { }
|
||||||
|
_core:
|
||||||
|
default_config_hash: 5VpawMrKPEPCkoO4YpPa0TDFO2dgiIHfTziJtwlmUxc
|
||||||
|
id: html_yearless_date
|
||||||
|
label: 'HTML Yearless date'
|
||||||
|
locked: true
|
||||||
|
pattern: m-d
|
10
config/sync/core.date_format.long.yml
Normal file
10
config/sync/core.date_format.long.yml
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
uuid: f1b92bd9-1cb1-4d5c-929c-18f756ade5a2
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies: { }
|
||||||
|
_core:
|
||||||
|
default_config_hash: og8sWXhBuHbLMw3CoiBEZjgqSyhFBFmcbUW_wLcfNbo
|
||||||
|
id: long
|
||||||
|
label: 'Default long date'
|
||||||
|
locked: false
|
||||||
|
pattern: 'l, F j, Y - H:i'
|
10
config/sync/core.date_format.medium.yml
Normal file
10
config/sync/core.date_format.medium.yml
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
uuid: 6a73f287-1a9a-45da-9217-b2c79fce0101
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies: { }
|
||||||
|
_core:
|
||||||
|
default_config_hash: nzL5d024NjXIX_8TlT6uFAu973lmfkmHklJC-2i9rAE
|
||||||
|
id: medium
|
||||||
|
label: 'Default medium date'
|
||||||
|
locked: false
|
||||||
|
pattern: 'D, m/d/Y - H:i'
|
10
config/sync/core.date_format.short.yml
Normal file
10
config/sync/core.date_format.short.yml
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
uuid: aaffdc4c-21ac-42db-90d7-298360dbdece
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies: { }
|
||||||
|
_core:
|
||||||
|
default_config_hash: AlzeyytA8InBgxIG9H2UDJYs3CG98Zj6yRsDKmlbZwA
|
||||||
|
id: short
|
||||||
|
label: 'Default short date'
|
||||||
|
locked: false
|
||||||
|
pattern: 'm/d/Y - H:i'
|
|
@ -0,0 +1,44 @@
|
||||||
|
uuid: c8057807-a693-469e-80fa-018f3e07b572
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
config:
|
||||||
|
- block_content.type.about_me
|
||||||
|
- field.field.block_content.about_me.body
|
||||||
|
- field.field.block_content.about_me.field_image
|
||||||
|
- image.style.thumbnail
|
||||||
|
module:
|
||||||
|
- image
|
||||||
|
- text
|
||||||
|
id: block_content.about_me.default
|
||||||
|
targetEntityType: block_content
|
||||||
|
bundle: about_me
|
||||||
|
mode: default
|
||||||
|
content:
|
||||||
|
body:
|
||||||
|
type: text_textarea_with_summary
|
||||||
|
weight: 26
|
||||||
|
region: content
|
||||||
|
settings:
|
||||||
|
rows: 9
|
||||||
|
summary_rows: 3
|
||||||
|
placeholder: ''
|
||||||
|
show_summary: false
|
||||||
|
third_party_settings: { }
|
||||||
|
field_image:
|
||||||
|
type: image_image
|
||||||
|
weight: 27
|
||||||
|
region: content
|
||||||
|
settings:
|
||||||
|
progress_indicator: throbber
|
||||||
|
preview_image_style: thumbnail
|
||||||
|
third_party_settings: { }
|
||||||
|
info:
|
||||||
|
type: string_textfield
|
||||||
|
weight: -5
|
||||||
|
region: content
|
||||||
|
settings:
|
||||||
|
size: 60
|
||||||
|
placeholder: ''
|
||||||
|
third_party_settings: { }
|
||||||
|
hidden: { }
|
|
@ -0,0 +1,35 @@
|
||||||
|
uuid: 10eaa5e2-f961-4022-9d89-7757a37b06d7
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
config:
|
||||||
|
- block_content.type.basic
|
||||||
|
- field.field.block_content.basic.body
|
||||||
|
module:
|
||||||
|
- text
|
||||||
|
_core:
|
||||||
|
default_config_hash: jAps3FCxvKecABS_tgExbhCZrBLQB3bNPWw18WjE3ss
|
||||||
|
id: block_content.basic.default
|
||||||
|
targetEntityType: block_content
|
||||||
|
bundle: basic
|
||||||
|
mode: default
|
||||||
|
content:
|
||||||
|
body:
|
||||||
|
type: text_textarea_with_summary
|
||||||
|
weight: -4
|
||||||
|
region: content
|
||||||
|
settings:
|
||||||
|
rows: 9
|
||||||
|
summary_rows: 3
|
||||||
|
placeholder: ''
|
||||||
|
show_summary: false
|
||||||
|
third_party_settings: { }
|
||||||
|
info:
|
||||||
|
type: string_textfield
|
||||||
|
weight: -5
|
||||||
|
region: content
|
||||||
|
settings:
|
||||||
|
size: 60
|
||||||
|
placeholder: ''
|
||||||
|
third_party_settings: { }
|
||||||
|
hidden: { }
|
|
@ -0,0 +1,31 @@
|
||||||
|
uuid: 01354362-e0f1-4024-90c3-36d61ea8d738
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
config:
|
||||||
|
- block_content.type.button
|
||||||
|
- field.field.block_content.button.field_link
|
||||||
|
module:
|
||||||
|
- link
|
||||||
|
id: block_content.button.default
|
||||||
|
targetEntityType: block_content
|
||||||
|
bundle: button
|
||||||
|
mode: default
|
||||||
|
content:
|
||||||
|
field_link:
|
||||||
|
type: link_default
|
||||||
|
weight: 26
|
||||||
|
region: content
|
||||||
|
settings:
|
||||||
|
placeholder_url: ''
|
||||||
|
placeholder_title: ''
|
||||||
|
third_party_settings: { }
|
||||||
|
info:
|
||||||
|
type: string_textfield
|
||||||
|
weight: -5
|
||||||
|
region: content
|
||||||
|
settings:
|
||||||
|
size: 60
|
||||||
|
placeholder: ''
|
||||||
|
third_party_settings: { }
|
||||||
|
hidden: { }
|
|
@ -0,0 +1,44 @@
|
||||||
|
uuid: 94b50c12-5f57-4490-bc7c-8bbb68f655df
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
config:
|
||||||
|
- block_content.type.testimonials
|
||||||
|
- field.field.block_content.testimonials.body
|
||||||
|
- field.field.block_content.testimonials.field_recommendations
|
||||||
|
module:
|
||||||
|
- text
|
||||||
|
id: block_content.testimonials.default
|
||||||
|
targetEntityType: block_content
|
||||||
|
bundle: testimonials
|
||||||
|
mode: default
|
||||||
|
content:
|
||||||
|
body:
|
||||||
|
type: text_textarea_with_summary
|
||||||
|
weight: 26
|
||||||
|
region: content
|
||||||
|
settings:
|
||||||
|
rows: 9
|
||||||
|
summary_rows: 3
|
||||||
|
placeholder: ''
|
||||||
|
show_summary: false
|
||||||
|
third_party_settings: { }
|
||||||
|
field_recommendations:
|
||||||
|
type: entity_reference_autocomplete
|
||||||
|
weight: 27
|
||||||
|
region: content
|
||||||
|
settings:
|
||||||
|
match_operator: CONTAINS
|
||||||
|
match_limit: 10
|
||||||
|
size: 60
|
||||||
|
placeholder: ''
|
||||||
|
third_party_settings: { }
|
||||||
|
info:
|
||||||
|
type: string_textfield
|
||||||
|
weight: -5
|
||||||
|
region: content
|
||||||
|
settings:
|
||||||
|
size: 60
|
||||||
|
placeholder: ''
|
||||||
|
third_party_settings: { }
|
||||||
|
hidden: { }
|
|
@ -0,0 +1,36 @@
|
||||||
|
uuid: 122b3ad1-0124-431b-93e3-27e550650bf3
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
config:
|
||||||
|
- comment.type.comment
|
||||||
|
- field.field.comment.comment.comment_body
|
||||||
|
module:
|
||||||
|
- text
|
||||||
|
_core:
|
||||||
|
default_config_hash: I0Pa0aQvT_jawlPo9oz4FE3h_ickc55dYKTPl6gILes
|
||||||
|
id: comment.comment.default
|
||||||
|
targetEntityType: comment
|
||||||
|
bundle: comment
|
||||||
|
mode: default
|
||||||
|
content:
|
||||||
|
author:
|
||||||
|
weight: -2
|
||||||
|
region: content
|
||||||
|
comment_body:
|
||||||
|
type: text_textarea
|
||||||
|
weight: 11
|
||||||
|
region: content
|
||||||
|
settings:
|
||||||
|
rows: 5
|
||||||
|
placeholder: ''
|
||||||
|
third_party_settings: { }
|
||||||
|
subject:
|
||||||
|
type: string_textfield
|
||||||
|
weight: 10
|
||||||
|
region: content
|
||||||
|
settings:
|
||||||
|
size: 60
|
||||||
|
placeholder: ''
|
||||||
|
third_party_settings: { }
|
||||||
|
hidden: { }
|
109
config/sync/core.entity_form_display.node.article.default.yml
Normal file
109
config/sync/core.entity_form_display.node.article.default.yml
Normal file
|
@ -0,0 +1,109 @@
|
||||||
|
uuid: 9204523c-e8e9-4a7d-923d-0bc4c83d74e0
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
config:
|
||||||
|
- field.field.node.article.body
|
||||||
|
- field.field.node.article.comment
|
||||||
|
- field.field.node.article.field_image
|
||||||
|
- field.field.node.article.field_tags
|
||||||
|
- image.style.thumbnail
|
||||||
|
- node.type.article
|
||||||
|
module:
|
||||||
|
- comment
|
||||||
|
- image
|
||||||
|
- path
|
||||||
|
- text
|
||||||
|
_core:
|
||||||
|
default_config_hash: ewbd6G2uX456-bgwseM2Q-KQG3RkASoyHmTh-XR3oLU
|
||||||
|
id: node.article.default
|
||||||
|
targetEntityType: node
|
||||||
|
bundle: article
|
||||||
|
mode: default
|
||||||
|
content:
|
||||||
|
body:
|
||||||
|
type: text_textarea_with_summary
|
||||||
|
weight: 2
|
||||||
|
region: content
|
||||||
|
settings:
|
||||||
|
rows: 9
|
||||||
|
summary_rows: 3
|
||||||
|
placeholder: ''
|
||||||
|
show_summary: false
|
||||||
|
third_party_settings: { }
|
||||||
|
comment:
|
||||||
|
type: comment_default
|
||||||
|
weight: 20
|
||||||
|
region: content
|
||||||
|
settings: { }
|
||||||
|
third_party_settings: { }
|
||||||
|
created:
|
||||||
|
type: datetime_timestamp
|
||||||
|
weight: 10
|
||||||
|
region: content
|
||||||
|
settings: { }
|
||||||
|
third_party_settings: { }
|
||||||
|
field_image:
|
||||||
|
type: image_image
|
||||||
|
weight: 1
|
||||||
|
region: content
|
||||||
|
settings:
|
||||||
|
progress_indicator: throbber
|
||||||
|
preview_image_style: thumbnail
|
||||||
|
third_party_settings: { }
|
||||||
|
field_tags:
|
||||||
|
type: entity_reference_autocomplete_tags
|
||||||
|
weight: 3
|
||||||
|
region: content
|
||||||
|
settings:
|
||||||
|
match_operator: CONTAINS
|
||||||
|
match_limit: 10
|
||||||
|
size: 60
|
||||||
|
placeholder: ''
|
||||||
|
third_party_settings: { }
|
||||||
|
path:
|
||||||
|
type: path
|
||||||
|
weight: 30
|
||||||
|
region: content
|
||||||
|
settings: { }
|
||||||
|
third_party_settings: { }
|
||||||
|
promote:
|
||||||
|
type: boolean_checkbox
|
||||||
|
weight: 15
|
||||||
|
region: content
|
||||||
|
settings:
|
||||||
|
display_label: true
|
||||||
|
third_party_settings: { }
|
||||||
|
status:
|
||||||
|
type: boolean_checkbox
|
||||||
|
weight: 120
|
||||||
|
region: content
|
||||||
|
settings:
|
||||||
|
display_label: true
|
||||||
|
third_party_settings: { }
|
||||||
|
sticky:
|
||||||
|
type: boolean_checkbox
|
||||||
|
weight: 16
|
||||||
|
region: content
|
||||||
|
settings:
|
||||||
|
display_label: true
|
||||||
|
third_party_settings: { }
|
||||||
|
title:
|
||||||
|
type: string_textfield
|
||||||
|
weight: 0
|
||||||
|
region: content
|
||||||
|
settings:
|
||||||
|
size: 60
|
||||||
|
placeholder: ''
|
||||||
|
third_party_settings: { }
|
||||||
|
uid:
|
||||||
|
type: entity_reference_autocomplete
|
||||||
|
weight: 5
|
||||||
|
region: content
|
||||||
|
settings:
|
||||||
|
match_operator: CONTAINS
|
||||||
|
match_limit: 10
|
||||||
|
size: 60
|
||||||
|
placeholder: ''
|
||||||
|
third_party_settings: { }
|
||||||
|
hidden: { }
|
81
config/sync/core.entity_form_display.node.page.default.yml
Normal file
81
config/sync/core.entity_form_display.node.page.default.yml
Normal file
|
@ -0,0 +1,81 @@
|
||||||
|
uuid: d295973b-e841-414c-a2b6-aa2cdcf72182
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
config:
|
||||||
|
- field.field.node.page.body
|
||||||
|
- field.field.node.page.layout_builder__layout
|
||||||
|
- node.type.page
|
||||||
|
module:
|
||||||
|
- path
|
||||||
|
- text
|
||||||
|
_core:
|
||||||
|
default_config_hash: SfpLhPExzvR0MgFp0Wp7CrmgEnhcqQ-fXIWFhbf4ue0
|
||||||
|
id: node.page.default
|
||||||
|
targetEntityType: node
|
||||||
|
bundle: page
|
||||||
|
mode: default
|
||||||
|
content:
|
||||||
|
body:
|
||||||
|
type: text_textarea_with_summary
|
||||||
|
weight: 31
|
||||||
|
region: content
|
||||||
|
settings:
|
||||||
|
rows: 9
|
||||||
|
summary_rows: 3
|
||||||
|
placeholder: ''
|
||||||
|
show_summary: false
|
||||||
|
third_party_settings: { }
|
||||||
|
created:
|
||||||
|
type: datetime_timestamp
|
||||||
|
weight: 10
|
||||||
|
region: content
|
||||||
|
settings: { }
|
||||||
|
third_party_settings: { }
|
||||||
|
path:
|
||||||
|
type: path
|
||||||
|
weight: 30
|
||||||
|
region: content
|
||||||
|
settings: { }
|
||||||
|
third_party_settings: { }
|
||||||
|
promote:
|
||||||
|
type: boolean_checkbox
|
||||||
|
weight: 15
|
||||||
|
region: content
|
||||||
|
settings:
|
||||||
|
display_label: true
|
||||||
|
third_party_settings: { }
|
||||||
|
status:
|
||||||
|
type: boolean_checkbox
|
||||||
|
weight: 120
|
||||||
|
region: content
|
||||||
|
settings:
|
||||||
|
display_label: true
|
||||||
|
third_party_settings: { }
|
||||||
|
sticky:
|
||||||
|
type: boolean_checkbox
|
||||||
|
weight: 16
|
||||||
|
region: content
|
||||||
|
settings:
|
||||||
|
display_label: true
|
||||||
|
third_party_settings: { }
|
||||||
|
title:
|
||||||
|
type: string_textfield
|
||||||
|
weight: -5
|
||||||
|
region: content
|
||||||
|
settings:
|
||||||
|
size: 60
|
||||||
|
placeholder: ''
|
||||||
|
third_party_settings: { }
|
||||||
|
uid:
|
||||||
|
type: entity_reference_autocomplete
|
||||||
|
weight: 5
|
||||||
|
region: content
|
||||||
|
settings:
|
||||||
|
match_operator: CONTAINS
|
||||||
|
match_limit: 10
|
||||||
|
size: 60
|
||||||
|
placeholder: ''
|
||||||
|
third_party_settings: { }
|
||||||
|
hidden:
|
||||||
|
layout_builder__layout: true
|
|
@ -0,0 +1,107 @@
|
||||||
|
uuid: a961c2a4-c4b9-4e05-b70b-dc06330523cb
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
config:
|
||||||
|
- field.field.node.testimonial.body
|
||||||
|
- field.field.node.testimonial.field_image
|
||||||
|
- field.field.node.testimonial.field_link
|
||||||
|
- field.field.node.testimonial.field_tagline
|
||||||
|
- image.style.thumbnail
|
||||||
|
- node.type.testimonial
|
||||||
|
module:
|
||||||
|
- image
|
||||||
|
- link
|
||||||
|
- path
|
||||||
|
- text
|
||||||
|
id: node.testimonial.default
|
||||||
|
targetEntityType: node
|
||||||
|
bundle: testimonial
|
||||||
|
mode: default
|
||||||
|
content:
|
||||||
|
body:
|
||||||
|
type: text_textarea_with_summary
|
||||||
|
weight: 121
|
||||||
|
region: content
|
||||||
|
settings:
|
||||||
|
rows: 9
|
||||||
|
summary_rows: 3
|
||||||
|
placeholder: ''
|
||||||
|
show_summary: false
|
||||||
|
third_party_settings: { }
|
||||||
|
created:
|
||||||
|
type: datetime_timestamp
|
||||||
|
weight: 10
|
||||||
|
region: content
|
||||||
|
settings: { }
|
||||||
|
third_party_settings: { }
|
||||||
|
field_image:
|
||||||
|
type: image_image
|
||||||
|
weight: 1
|
||||||
|
region: content
|
||||||
|
settings:
|
||||||
|
progress_indicator: throbber
|
||||||
|
preview_image_style: thumbnail
|
||||||
|
third_party_settings: { }
|
||||||
|
field_link:
|
||||||
|
type: link_default
|
||||||
|
weight: 122
|
||||||
|
region: content
|
||||||
|
settings:
|
||||||
|
placeholder_url: ''
|
||||||
|
placeholder_title: ''
|
||||||
|
third_party_settings: { }
|
||||||
|
field_tagline:
|
||||||
|
type: string_textfield
|
||||||
|
weight: 123
|
||||||
|
region: content
|
||||||
|
settings:
|
||||||
|
size: 60
|
||||||
|
placeholder: ''
|
||||||
|
third_party_settings: { }
|
||||||
|
path:
|
||||||
|
type: path
|
||||||
|
weight: 30
|
||||||
|
region: content
|
||||||
|
settings: { }
|
||||||
|
third_party_settings: { }
|
||||||
|
promote:
|
||||||
|
type: boolean_checkbox
|
||||||
|
weight: 15
|
||||||
|
region: content
|
||||||
|
settings:
|
||||||
|
display_label: true
|
||||||
|
third_party_settings: { }
|
||||||
|
status:
|
||||||
|
type: boolean_checkbox
|
||||||
|
weight: 120
|
||||||
|
region: content
|
||||||
|
settings:
|
||||||
|
display_label: true
|
||||||
|
third_party_settings: { }
|
||||||
|
sticky:
|
||||||
|
type: boolean_checkbox
|
||||||
|
weight: 16
|
||||||
|
region: content
|
||||||
|
settings:
|
||||||
|
display_label: true
|
||||||
|
third_party_settings: { }
|
||||||
|
title:
|
||||||
|
type: string_textfield
|
||||||
|
weight: -5
|
||||||
|
region: content
|
||||||
|
settings:
|
||||||
|
size: 60
|
||||||
|
placeholder: ''
|
||||||
|
third_party_settings: { }
|
||||||
|
uid:
|
||||||
|
type: entity_reference_autocomplete
|
||||||
|
weight: 5
|
||||||
|
region: content
|
||||||
|
settings:
|
||||||
|
match_operator: CONTAINS
|
||||||
|
match_limit: 10
|
||||||
|
size: 60
|
||||||
|
placeholder: ''
|
||||||
|
third_party_settings: { }
|
||||||
|
hidden: { }
|
38
config/sync/core.entity_form_display.user.user.default.yml
Normal file
38
config/sync/core.entity_form_display.user.user.default.yml
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
uuid: b6d49080-6c08-426d-a6c6-06c8e2d01791
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
config:
|
||||||
|
- field.field.user.user.user_picture
|
||||||
|
- image.style.thumbnail
|
||||||
|
module:
|
||||||
|
- image
|
||||||
|
- user
|
||||||
|
_core:
|
||||||
|
default_config_hash: FaQ9Ptcpxpg30AtiqRDtl_8zbJArHP1LPfug_s59TOA
|
||||||
|
id: user.user.default
|
||||||
|
targetEntityType: user
|
||||||
|
bundle: user
|
||||||
|
mode: default
|
||||||
|
content:
|
||||||
|
account:
|
||||||
|
weight: -10
|
||||||
|
region: content
|
||||||
|
contact:
|
||||||
|
weight: 5
|
||||||
|
region: content
|
||||||
|
language:
|
||||||
|
weight: 0
|
||||||
|
region: content
|
||||||
|
timezone:
|
||||||
|
weight: 6
|
||||||
|
region: content
|
||||||
|
user_picture:
|
||||||
|
type: image_image
|
||||||
|
weight: -1
|
||||||
|
region: content
|
||||||
|
settings:
|
||||||
|
progress_indicator: throbber
|
||||||
|
preview_image_style: thumbnail
|
||||||
|
third_party_settings: { }
|
||||||
|
hidden: { }
|
13
config/sync/core.entity_form_mode.user.register.yml
Normal file
13
config/sync/core.entity_form_mode.user.register.yml
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
uuid: 6b6052fc-f7ef-43a9-af52-9494a27223f4
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- user
|
||||||
|
_core:
|
||||||
|
default_config_hash: 5pE_4hurqtIlZN3XDi7eTo5RG13BMG0Rh9HYlRI3h8U
|
||||||
|
id: user.register
|
||||||
|
label: Register
|
||||||
|
description: ''
|
||||||
|
targetEntityType: user
|
||||||
|
cache: true
|
|
@ -0,0 +1,35 @@
|
||||||
|
uuid: 0a93fb1e-b820-4881-ba92-72f5dbff6a6a
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
config:
|
||||||
|
- block_content.type.about_me
|
||||||
|
- field.field.block_content.about_me.body
|
||||||
|
- field.field.block_content.about_me.field_image
|
||||||
|
module:
|
||||||
|
- image
|
||||||
|
- text
|
||||||
|
id: block_content.about_me.default
|
||||||
|
targetEntityType: block_content
|
||||||
|
bundle: about_me
|
||||||
|
mode: default
|
||||||
|
content:
|
||||||
|
body:
|
||||||
|
type: text_default
|
||||||
|
label: hidden
|
||||||
|
settings: { }
|
||||||
|
third_party_settings: { }
|
||||||
|
weight: 0
|
||||||
|
region: content
|
||||||
|
field_image:
|
||||||
|
type: image
|
||||||
|
label: hidden
|
||||||
|
settings:
|
||||||
|
image_link: ''
|
||||||
|
image_style: ''
|
||||||
|
image_loading:
|
||||||
|
attribute: lazy
|
||||||
|
third_party_settings: { }
|
||||||
|
weight: 1
|
||||||
|
region: content
|
||||||
|
hidden: { }
|
|
@ -0,0 +1,24 @@
|
||||||
|
uuid: c81dc961-c288-45dc-aeca-1bdb37cab73c
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
config:
|
||||||
|
- block_content.type.basic
|
||||||
|
- field.field.block_content.basic.body
|
||||||
|
module:
|
||||||
|
- text
|
||||||
|
_core:
|
||||||
|
default_config_hash: hBNNDTFwakREOTa6GGMqN899Iyrii0hInwSJtQ7Kj30
|
||||||
|
id: block_content.basic.default
|
||||||
|
targetEntityType: block_content
|
||||||
|
bundle: basic
|
||||||
|
mode: default
|
||||||
|
content:
|
||||||
|
body:
|
||||||
|
type: text_default
|
||||||
|
label: hidden
|
||||||
|
settings: { }
|
||||||
|
third_party_settings: { }
|
||||||
|
weight: 0
|
||||||
|
region: content
|
||||||
|
hidden: { }
|
|
@ -0,0 +1,27 @@
|
||||||
|
uuid: d3063574-6175-477f-91bb-602214310261
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
config:
|
||||||
|
- block_content.type.button
|
||||||
|
- field.field.block_content.button.field_link
|
||||||
|
module:
|
||||||
|
- link
|
||||||
|
id: block_content.button.default
|
||||||
|
targetEntityType: block_content
|
||||||
|
bundle: button
|
||||||
|
mode: default
|
||||||
|
content:
|
||||||
|
field_link:
|
||||||
|
type: link
|
||||||
|
label: hidden
|
||||||
|
settings:
|
||||||
|
trim_length: 80
|
||||||
|
url_only: false
|
||||||
|
url_plain: false
|
||||||
|
rel: ''
|
||||||
|
target: ''
|
||||||
|
third_party_settings: { }
|
||||||
|
weight: 0
|
||||||
|
region: content
|
||||||
|
hidden: { }
|
|
@ -0,0 +1,32 @@
|
||||||
|
uuid: f5c263fb-99d2-4902-829d-22ba58d198db
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
config:
|
||||||
|
- block_content.type.testimonials
|
||||||
|
- field.field.block_content.testimonials.body
|
||||||
|
- field.field.block_content.testimonials.field_recommendations
|
||||||
|
module:
|
||||||
|
- text
|
||||||
|
id: block_content.testimonials.default
|
||||||
|
targetEntityType: block_content
|
||||||
|
bundle: testimonials
|
||||||
|
mode: default
|
||||||
|
content:
|
||||||
|
body:
|
||||||
|
type: text_default
|
||||||
|
label: hidden
|
||||||
|
settings: { }
|
||||||
|
third_party_settings: { }
|
||||||
|
weight: 0
|
||||||
|
region: content
|
||||||
|
field_recommendations:
|
||||||
|
type: entity_reference_entity_view
|
||||||
|
label: hidden
|
||||||
|
settings:
|
||||||
|
view_mode: default
|
||||||
|
link: true
|
||||||
|
third_party_settings: { }
|
||||||
|
weight: 1
|
||||||
|
region: content
|
||||||
|
hidden: { }
|
|
@ -0,0 +1,27 @@
|
||||||
|
uuid: 4e011341-2746-4b80-8f7c-0ed212ea1b23
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
config:
|
||||||
|
- comment.type.comment
|
||||||
|
- field.field.comment.comment.comment_body
|
||||||
|
module:
|
||||||
|
- text
|
||||||
|
_core:
|
||||||
|
default_config_hash: aBQUGsQ46M4048fIlFuTXwl2zV0j2cJX89CTUobh9hA
|
||||||
|
id: comment.comment.default
|
||||||
|
targetEntityType: comment
|
||||||
|
bundle: comment
|
||||||
|
mode: default
|
||||||
|
content:
|
||||||
|
comment_body:
|
||||||
|
type: text_default
|
||||||
|
label: hidden
|
||||||
|
settings: { }
|
||||||
|
third_party_settings: { }
|
||||||
|
weight: 0
|
||||||
|
region: content
|
||||||
|
links:
|
||||||
|
weight: 100
|
||||||
|
region: content
|
||||||
|
hidden: { }
|
|
@ -0,0 +1,65 @@
|
||||||
|
uuid: d91be590-afb3-4da7-98fb-33ebb0e94cb1
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
config:
|
||||||
|
- core.entity_view_display.comment.comment.default
|
||||||
|
- field.field.node.article.body
|
||||||
|
- field.field.node.article.comment
|
||||||
|
- field.field.node.article.field_image
|
||||||
|
- field.field.node.article.field_tags
|
||||||
|
- image.style.wide
|
||||||
|
- node.type.article
|
||||||
|
module:
|
||||||
|
- comment
|
||||||
|
- image
|
||||||
|
- text
|
||||||
|
- user
|
||||||
|
_core:
|
||||||
|
default_config_hash: br6izr-iGEu--JvNbCJNtOBpRnxpFLXfoV5y61U9Nqc
|
||||||
|
id: node.article.default
|
||||||
|
targetEntityType: node
|
||||||
|
bundle: article
|
||||||
|
mode: default
|
||||||
|
content:
|
||||||
|
body:
|
||||||
|
type: text_default
|
||||||
|
label: hidden
|
||||||
|
settings: { }
|
||||||
|
third_party_settings: { }
|
||||||
|
weight: 0
|
||||||
|
region: content
|
||||||
|
comment:
|
||||||
|
type: comment_default
|
||||||
|
label: above
|
||||||
|
settings:
|
||||||
|
view_mode: default
|
||||||
|
pager_id: 0
|
||||||
|
third_party_settings: { }
|
||||||
|
weight: 110
|
||||||
|
region: content
|
||||||
|
field_image:
|
||||||
|
type: image
|
||||||
|
label: hidden
|
||||||
|
settings:
|
||||||
|
image_link: ''
|
||||||
|
image_style: wide
|
||||||
|
image_loading:
|
||||||
|
attribute: eager
|
||||||
|
third_party_settings: { }
|
||||||
|
weight: -1
|
||||||
|
region: content
|
||||||
|
field_tags:
|
||||||
|
type: entity_reference_label
|
||||||
|
label: above
|
||||||
|
settings:
|
||||||
|
link: true
|
||||||
|
third_party_settings: { }
|
||||||
|
weight: 10
|
||||||
|
region: content
|
||||||
|
links:
|
||||||
|
settings: { }
|
||||||
|
third_party_settings: { }
|
||||||
|
weight: 100
|
||||||
|
region: content
|
||||||
|
hidden: { }
|
28
config/sync/core.entity_view_display.node.article.rss.yml
Normal file
28
config/sync/core.entity_view_display.node.article.rss.yml
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
uuid: 4403644c-3c31-4881-8ac7-79459383a9ed
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
config:
|
||||||
|
- core.entity_view_mode.node.rss
|
||||||
|
- field.field.node.article.body
|
||||||
|
- field.field.node.article.comment
|
||||||
|
- field.field.node.article.field_image
|
||||||
|
- field.field.node.article.field_tags
|
||||||
|
- node.type.article
|
||||||
|
module:
|
||||||
|
- user
|
||||||
|
_core:
|
||||||
|
default_config_hash: 2rIr6K5Q0UQ9khg0zE_CK-PtJH76UL-BDDZcZnZzwCc
|
||||||
|
id: node.article.rss
|
||||||
|
targetEntityType: node
|
||||||
|
bundle: article
|
||||||
|
mode: rss
|
||||||
|
content:
|
||||||
|
links:
|
||||||
|
weight: 100
|
||||||
|
region: content
|
||||||
|
hidden:
|
||||||
|
body: true
|
||||||
|
comment: true
|
||||||
|
field_image: true
|
||||||
|
field_tags: true
|
55
config/sync/core.entity_view_display.node.article.teaser.yml
Normal file
55
config/sync/core.entity_view_display.node.article.teaser.yml
Normal file
|
@ -0,0 +1,55 @@
|
||||||
|
uuid: d1904a9a-57a0-4d77-9343-d286e31472a1
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
config:
|
||||||
|
- core.entity_view_mode.node.teaser
|
||||||
|
- field.field.node.article.body
|
||||||
|
- field.field.node.article.comment
|
||||||
|
- field.field.node.article.field_image
|
||||||
|
- field.field.node.article.field_tags
|
||||||
|
- image.style.medium
|
||||||
|
- node.type.article
|
||||||
|
module:
|
||||||
|
- image
|
||||||
|
- text
|
||||||
|
- user
|
||||||
|
_core:
|
||||||
|
default_config_hash: V47dEG0Mf8XVUaxi_YEyZGs5PMww1CUJWmih46SpnMM
|
||||||
|
id: node.article.teaser
|
||||||
|
targetEntityType: node
|
||||||
|
bundle: article
|
||||||
|
mode: teaser
|
||||||
|
content:
|
||||||
|
body:
|
||||||
|
type: text_summary_or_trimmed
|
||||||
|
label: hidden
|
||||||
|
settings:
|
||||||
|
trim_length: 600
|
||||||
|
third_party_settings: { }
|
||||||
|
weight: 0
|
||||||
|
region: content
|
||||||
|
field_image:
|
||||||
|
type: image
|
||||||
|
label: hidden
|
||||||
|
settings:
|
||||||
|
image_style: medium
|
||||||
|
image_link: content
|
||||||
|
image_loading:
|
||||||
|
attribute: lazy
|
||||||
|
third_party_settings: { }
|
||||||
|
weight: -1
|
||||||
|
region: content
|
||||||
|
field_tags:
|
||||||
|
type: entity_reference_label
|
||||||
|
label: above
|
||||||
|
settings:
|
||||||
|
link: true
|
||||||
|
third_party_settings: { }
|
||||||
|
weight: 10
|
||||||
|
region: content
|
||||||
|
links:
|
||||||
|
weight: 100
|
||||||
|
region: content
|
||||||
|
hidden:
|
||||||
|
comment: true
|
67
config/sync/core.entity_view_display.node.page.default.yml
Normal file
67
config/sync/core.entity_view_display.node.page.default.yml
Normal file
|
@ -0,0 +1,67 @@
|
||||||
|
uuid: b6dc9467-b9be-4cff-a8e9-7ec2b6126c00
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
config:
|
||||||
|
- field.field.node.page.body
|
||||||
|
- node.type.page
|
||||||
|
module:
|
||||||
|
- layout_builder
|
||||||
|
- text
|
||||||
|
- user
|
||||||
|
third_party_settings:
|
||||||
|
layout_builder:
|
||||||
|
enabled: true
|
||||||
|
allow_custom: true
|
||||||
|
sections:
|
||||||
|
-
|
||||||
|
layout_id: layout_onecol
|
||||||
|
layout_settings:
|
||||||
|
label: ''
|
||||||
|
components:
|
||||||
|
e0748c22-bff7-4ba3-8445-ba238ceebc3a:
|
||||||
|
uuid: e0748c22-bff7-4ba3-8445-ba238ceebc3a
|
||||||
|
region: content
|
||||||
|
configuration:
|
||||||
|
id: 'field_block:node:page:body'
|
||||||
|
label_display: '0'
|
||||||
|
context_mapping:
|
||||||
|
entity: layout_builder.entity
|
||||||
|
formatter:
|
||||||
|
type: text_default
|
||||||
|
label: hidden
|
||||||
|
settings: { }
|
||||||
|
third_party_settings: { }
|
||||||
|
weight: 0
|
||||||
|
additional: { }
|
||||||
|
61f130b8-baca-41ed-914d-f6d407403ef3:
|
||||||
|
uuid: 61f130b8-baca-41ed-914d-f6d407403ef3
|
||||||
|
region: content
|
||||||
|
configuration:
|
||||||
|
id: 'extra_field_block:node:page:links'
|
||||||
|
label_display: '0'
|
||||||
|
context_mapping:
|
||||||
|
entity: layout_builder.entity
|
||||||
|
weight: 1
|
||||||
|
additional: { }
|
||||||
|
third_party_settings: { }
|
||||||
|
_core:
|
||||||
|
default_config_hash: M_Y8L5tfmhx7DR143E05YyZSpvgil6VFvqcfBWykalg
|
||||||
|
id: node.page.default
|
||||||
|
targetEntityType: node
|
||||||
|
bundle: page
|
||||||
|
mode: default
|
||||||
|
content:
|
||||||
|
body:
|
||||||
|
type: text_default
|
||||||
|
label: hidden
|
||||||
|
settings: { }
|
||||||
|
third_party_settings: { }
|
||||||
|
weight: 100
|
||||||
|
region: content
|
||||||
|
links:
|
||||||
|
settings: { }
|
||||||
|
third_party_settings: { }
|
||||||
|
weight: 101
|
||||||
|
region: content
|
||||||
|
hidden: { }
|
32
config/sync/core.entity_view_display.node.page.teaser.yml
Normal file
32
config/sync/core.entity_view_display.node.page.teaser.yml
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
uuid: 4df0f2f3-a675-46fa-98bd-14173ee41479
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
config:
|
||||||
|
- core.entity_view_mode.node.teaser
|
||||||
|
- field.field.node.page.body
|
||||||
|
- field.field.node.page.layout_builder__layout
|
||||||
|
- node.type.page
|
||||||
|
module:
|
||||||
|
- text
|
||||||
|
- user
|
||||||
|
_core:
|
||||||
|
default_config_hash: 8BgdRtLbtQ0F__o0FHSH0Mx5fvXOra9tfT1GmNKbRYw
|
||||||
|
id: node.page.teaser
|
||||||
|
targetEntityType: node
|
||||||
|
bundle: page
|
||||||
|
mode: teaser
|
||||||
|
content:
|
||||||
|
body:
|
||||||
|
type: text_summary_or_trimmed
|
||||||
|
label: hidden
|
||||||
|
settings:
|
||||||
|
trim_length: 600
|
||||||
|
third_party_settings: { }
|
||||||
|
weight: 100
|
||||||
|
region: content
|
||||||
|
links:
|
||||||
|
weight: 101
|
||||||
|
region: content
|
||||||
|
hidden:
|
||||||
|
layout_builder__layout: true
|
|
@ -0,0 +1,65 @@
|
||||||
|
uuid: 12711831-955c-40a0-bcb5-8b4695be00eb
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
config:
|
||||||
|
- field.field.node.testimonial.body
|
||||||
|
- field.field.node.testimonial.field_image
|
||||||
|
- field.field.node.testimonial.field_link
|
||||||
|
- field.field.node.testimonial.field_tagline
|
||||||
|
- image.style.wide
|
||||||
|
- node.type.testimonial
|
||||||
|
module:
|
||||||
|
- image
|
||||||
|
- link
|
||||||
|
- text
|
||||||
|
- user
|
||||||
|
id: node.testimonial.default
|
||||||
|
targetEntityType: node
|
||||||
|
bundle: testimonial
|
||||||
|
mode: default
|
||||||
|
content:
|
||||||
|
body:
|
||||||
|
type: text_default
|
||||||
|
label: hidden
|
||||||
|
settings: { }
|
||||||
|
third_party_settings: { }
|
||||||
|
weight: 1
|
||||||
|
region: content
|
||||||
|
field_image:
|
||||||
|
type: image
|
||||||
|
label: hidden
|
||||||
|
settings:
|
||||||
|
image_link: ''
|
||||||
|
image_style: wide
|
||||||
|
image_loading:
|
||||||
|
attribute: eager
|
||||||
|
third_party_settings: { }
|
||||||
|
weight: 2
|
||||||
|
region: content
|
||||||
|
field_link:
|
||||||
|
type: link
|
||||||
|
label: hidden
|
||||||
|
settings:
|
||||||
|
trim_length: 80
|
||||||
|
url_only: false
|
||||||
|
url_plain: false
|
||||||
|
rel: ''
|
||||||
|
target: ''
|
||||||
|
third_party_settings: { }
|
||||||
|
weight: 4
|
||||||
|
region: content
|
||||||
|
field_tagline:
|
||||||
|
type: string
|
||||||
|
label: hidden
|
||||||
|
settings:
|
||||||
|
link_to_entity: false
|
||||||
|
third_party_settings: { }
|
||||||
|
weight: 0
|
||||||
|
region: content
|
||||||
|
links:
|
||||||
|
settings: { }
|
||||||
|
third_party_settings: { }
|
||||||
|
weight: 3
|
||||||
|
region: content
|
||||||
|
hidden: { }
|
|
@ -0,0 +1,48 @@
|
||||||
|
uuid: 3b7753b8-b5ea-408a-90d2-4a4336348c8e
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
config:
|
||||||
|
- core.entity_view_mode.node.teaser
|
||||||
|
- field.field.node.testimonial.body
|
||||||
|
- field.field.node.testimonial.field_image
|
||||||
|
- field.field.node.testimonial.field_link
|
||||||
|
- field.field.node.testimonial.field_tagline
|
||||||
|
- image.style.medium
|
||||||
|
- node.type.testimonial
|
||||||
|
module:
|
||||||
|
- image
|
||||||
|
- text
|
||||||
|
- user
|
||||||
|
id: node.testimonial.teaser
|
||||||
|
targetEntityType: node
|
||||||
|
bundle: testimonial
|
||||||
|
mode: teaser
|
||||||
|
content:
|
||||||
|
body:
|
||||||
|
type: text_summary_or_trimmed
|
||||||
|
label: hidden
|
||||||
|
settings:
|
||||||
|
trim_length: 600
|
||||||
|
third_party_settings: { }
|
||||||
|
weight: 101
|
||||||
|
region: content
|
||||||
|
field_image:
|
||||||
|
type: image
|
||||||
|
label: hidden
|
||||||
|
settings:
|
||||||
|
image_link: content
|
||||||
|
image_style: medium
|
||||||
|
image_loading:
|
||||||
|
attribute: lazy
|
||||||
|
third_party_settings: { }
|
||||||
|
weight: -1
|
||||||
|
region: content
|
||||||
|
links:
|
||||||
|
settings: { }
|
||||||
|
third_party_settings: { }
|
||||||
|
weight: 100
|
||||||
|
region: content
|
||||||
|
hidden:
|
||||||
|
field_link: true
|
||||||
|
field_tagline: true
|
31
config/sync/core.entity_view_display.user.user.compact.yml
Normal file
31
config/sync/core.entity_view_display.user.user.compact.yml
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
uuid: 7b977160-4d15-443d-96ee-73297918c709
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
config:
|
||||||
|
- core.entity_view_mode.user.compact
|
||||||
|
- field.field.user.user.user_picture
|
||||||
|
- image.style.thumbnail
|
||||||
|
module:
|
||||||
|
- image
|
||||||
|
- user
|
||||||
|
_core:
|
||||||
|
default_config_hash: 00zr_RBdTjPjBGITD3h4c1ESQZimjdVCcHGt1trLqIY
|
||||||
|
id: user.user.compact
|
||||||
|
targetEntityType: user
|
||||||
|
bundle: user
|
||||||
|
mode: compact
|
||||||
|
content:
|
||||||
|
user_picture:
|
||||||
|
type: image
|
||||||
|
label: hidden
|
||||||
|
settings:
|
||||||
|
image_style: thumbnail
|
||||||
|
image_link: content
|
||||||
|
image_loading:
|
||||||
|
attribute: lazy
|
||||||
|
third_party_settings: { }
|
||||||
|
weight: 0
|
||||||
|
region: content
|
||||||
|
hidden:
|
||||||
|
member_for: true
|
32
config/sync/core.entity_view_display.user.user.default.yml
Normal file
32
config/sync/core.entity_view_display.user.user.default.yml
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
uuid: 43e57412-b59d-4316-856a-4987331466a8
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
config:
|
||||||
|
- field.field.user.user.user_picture
|
||||||
|
- image.style.thumbnail
|
||||||
|
module:
|
||||||
|
- image
|
||||||
|
- user
|
||||||
|
_core:
|
||||||
|
default_config_hash: mZLyuWM9CQx2ZJVqFGSbzgFnHzudVbHBYmdU256A5Wk
|
||||||
|
id: user.user.default
|
||||||
|
targetEntityType: user
|
||||||
|
bundle: user
|
||||||
|
mode: default
|
||||||
|
content:
|
||||||
|
member_for:
|
||||||
|
weight: 5
|
||||||
|
region: content
|
||||||
|
user_picture:
|
||||||
|
type: image
|
||||||
|
label: hidden
|
||||||
|
settings:
|
||||||
|
image_style: thumbnail
|
||||||
|
image_link: content
|
||||||
|
image_loading:
|
||||||
|
attribute: lazy
|
||||||
|
third_party_settings: { }
|
||||||
|
weight: 0
|
||||||
|
region: content
|
||||||
|
hidden: { }
|
11
config/sync/core.entity_view_mode.block.token.yml
Normal file
11
config/sync/core.entity_view_mode.block.token.yml
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
uuid: cc872c78-4d0b-4672-9333-73cf4c4ce3f7
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- block
|
||||||
|
id: block.token
|
||||||
|
label: Token
|
||||||
|
description: ''
|
||||||
|
targetEntityType: block
|
||||||
|
cache: true
|
13
config/sync/core.entity_view_mode.block_content.full.yml
Normal file
13
config/sync/core.entity_view_mode.block_content.full.yml
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
uuid: ae3eb4f9-b008-4ec9-a74f-fead57332da5
|
||||||
|
langcode: en
|
||||||
|
status: false
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- block_content
|
||||||
|
_core:
|
||||||
|
default_config_hash: Q7yUUYeRLByl-MCGveKKF_KhAtNICLCMJuKWfugCvso
|
||||||
|
id: block_content.full
|
||||||
|
label: Full
|
||||||
|
description: ''
|
||||||
|
targetEntityType: block_content
|
||||||
|
cache: true
|
11
config/sync/core.entity_view_mode.block_content.token.yml
Normal file
11
config/sync/core.entity_view_mode.block_content.token.yml
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
uuid: 6c104845-a5ec-47ae-8658-6ba748081475
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- block_content
|
||||||
|
id: block_content.token
|
||||||
|
label: Token
|
||||||
|
description: ''
|
||||||
|
targetEntityType: block_content
|
||||||
|
cache: true
|
13
config/sync/core.entity_view_mode.comment.full.yml
Normal file
13
config/sync/core.entity_view_mode.comment.full.yml
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
uuid: 906eee37-b22a-4096-87c2-1f37922d0043
|
||||||
|
langcode: en
|
||||||
|
status: false
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- comment
|
||||||
|
_core:
|
||||||
|
default_config_hash: N4mUjXpPckUkVRY1PbKw4GGoL1i2ECU7PL3EreiKStk
|
||||||
|
id: comment.full
|
||||||
|
label: 'Full comment'
|
||||||
|
description: ''
|
||||||
|
targetEntityType: comment
|
||||||
|
cache: true
|
11
config/sync/core.entity_view_mode.comment.token.yml
Normal file
11
config/sync/core.entity_view_mode.comment.token.yml
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
uuid: f6387ac6-cbd8-45fb-92c0-ef91ab55d88b
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- comment
|
||||||
|
id: comment.token
|
||||||
|
label: Token
|
||||||
|
description: ''
|
||||||
|
targetEntityType: comment
|
||||||
|
cache: true
|
11
config/sync/core.entity_view_mode.contact_message.token.yml
Normal file
11
config/sync/core.entity_view_mode.contact_message.token.yml
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
uuid: 85bc01ad-1195-4844-a38d-0ffde4a57970
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- contact
|
||||||
|
id: contact_message.token
|
||||||
|
label: Token
|
||||||
|
description: ''
|
||||||
|
targetEntityType: contact_message
|
||||||
|
cache: true
|
11
config/sync/core.entity_view_mode.file.token.yml
Normal file
11
config/sync/core.entity_view_mode.file.token.yml
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
uuid: be61bf7b-d26c-4895-b860-0599c823d943
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- file
|
||||||
|
id: file.token
|
||||||
|
label: Token
|
||||||
|
description: ''
|
||||||
|
targetEntityType: file
|
||||||
|
cache: true
|
|
@ -0,0 +1,11 @@
|
||||||
|
uuid: 7934bf1c-70e9-422a-921d-123cfbaccbf4
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- menu_link_content
|
||||||
|
id: menu_link_content.token
|
||||||
|
label: Token
|
||||||
|
description: ''
|
||||||
|
targetEntityType: menu_link_content
|
||||||
|
cache: true
|
13
config/sync/core.entity_view_mode.node.full.yml
Normal file
13
config/sync/core.entity_view_mode.node.full.yml
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
uuid: c1bafdf7-fa45-452a-81e7-2ff08ebaa9d7
|
||||||
|
langcode: en
|
||||||
|
status: false
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- node
|
||||||
|
_core:
|
||||||
|
default_config_hash: QJ2aZ1xfVf59aq6Pz5X7fyUOa2HxuCoTwQ_RQjoulAU
|
||||||
|
id: node.full
|
||||||
|
label: 'Full content'
|
||||||
|
description: ''
|
||||||
|
targetEntityType: node
|
||||||
|
cache: true
|
13
config/sync/core.entity_view_mode.node.rss.yml
Normal file
13
config/sync/core.entity_view_mode.node.rss.yml
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
uuid: 9320aeb4-cf3e-403c-b657-9d7a9a6021ee
|
||||||
|
langcode: en
|
||||||
|
status: false
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- node
|
||||||
|
_core:
|
||||||
|
default_config_hash: l8fiAFE3Kng_6bhLlUDnVTkTDzXWxzYFrCWTrngVXEA
|
||||||
|
id: node.rss
|
||||||
|
label: RSS
|
||||||
|
description: ''
|
||||||
|
targetEntityType: node
|
||||||
|
cache: true
|
13
config/sync/core.entity_view_mode.node.search_index.yml
Normal file
13
config/sync/core.entity_view_mode.node.search_index.yml
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
uuid: 1f27e637-79ea-4585-b915-5d5e96ee6b05
|
||||||
|
langcode: en
|
||||||
|
status: false
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- node
|
||||||
|
_core:
|
||||||
|
default_config_hash: r_A0T3aTqGDwLyvoH7wLps-0PM--RHlS8UsiJe_Ac64
|
||||||
|
id: node.search_index
|
||||||
|
label: 'Search index'
|
||||||
|
description: ''
|
||||||
|
targetEntityType: node
|
||||||
|
cache: true
|
13
config/sync/core.entity_view_mode.node.search_result.yml
Normal file
13
config/sync/core.entity_view_mode.node.search_result.yml
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
uuid: bfa8265a-b49c-4c42-9bf0-df3016635aa9
|
||||||
|
langcode: en
|
||||||
|
status: false
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- node
|
||||||
|
_core:
|
||||||
|
default_config_hash: d8wBEm7XvJ6H3S0IneDD9PfTBklPIH7GMpxElVemPf8
|
||||||
|
id: node.search_result
|
||||||
|
label: 'Search result highlighting input'
|
||||||
|
description: ''
|
||||||
|
targetEntityType: node
|
||||||
|
cache: true
|
13
config/sync/core.entity_view_mode.node.teaser.yml
Normal file
13
config/sync/core.entity_view_mode.node.teaser.yml
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
uuid: 9a94d847-e068-4a8b-8c35-aa62574538bc
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- node
|
||||||
|
_core:
|
||||||
|
default_config_hash: KgGJDZFpMaz_8bTv6fN1bXS3Qi5LWmRJI9R53kEGsNQ
|
||||||
|
id: node.teaser
|
||||||
|
label: Teaser
|
||||||
|
description: ''
|
||||||
|
targetEntityType: node
|
||||||
|
cache: true
|
11
config/sync/core.entity_view_mode.node.token.yml
Normal file
11
config/sync/core.entity_view_mode.node.token.yml
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
uuid: 9aeaa15a-f568-463a-8028-5c57d0640915
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- node
|
||||||
|
id: node.token
|
||||||
|
label: Token
|
||||||
|
description: ''
|
||||||
|
targetEntityType: node
|
||||||
|
cache: true
|
11
config/sync/core.entity_view_mode.path_alias.token.yml
Normal file
11
config/sync/core.entity_view_mode.path_alias.token.yml
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
uuid: ca198e57-5127-40b8-80e2-f17eb6c6b375
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- path_alias
|
||||||
|
id: path_alias.token
|
||||||
|
label: Token
|
||||||
|
description: ''
|
||||||
|
targetEntityType: path_alias
|
||||||
|
cache: true
|
11
config/sync/core.entity_view_mode.shortcut.token.yml
Normal file
11
config/sync/core.entity_view_mode.shortcut.token.yml
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
uuid: 2744cfc4-ed83-4eac-a52f-883e2fd13265
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- shortcut
|
||||||
|
id: shortcut.token
|
||||||
|
label: Token
|
||||||
|
description: ''
|
||||||
|
targetEntityType: shortcut
|
||||||
|
cache: true
|
13
config/sync/core.entity_view_mode.taxonomy_term.full.yml
Normal file
13
config/sync/core.entity_view_mode.taxonomy_term.full.yml
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
uuid: 775c9909-dc02-42f2-b2ff-d884284ecc28
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- taxonomy
|
||||||
|
_core:
|
||||||
|
default_config_hash: iukUENpf8CFvjZbGGacKX_Ges0-lU9z6zvsd32P6kbo
|
||||||
|
id: taxonomy_term.full
|
||||||
|
label: 'Taxonomy term page'
|
||||||
|
description: ''
|
||||||
|
targetEntityType: taxonomy_term
|
||||||
|
cache: true
|
11
config/sync/core.entity_view_mode.taxonomy_term.token.yml
Normal file
11
config/sync/core.entity_view_mode.taxonomy_term.token.yml
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
uuid: ab68a72f-bf89-43d9-aa6f-4d23df47deb5
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- taxonomy
|
||||||
|
id: taxonomy_term.token
|
||||||
|
label: Token
|
||||||
|
description: ''
|
||||||
|
targetEntityType: taxonomy_term
|
||||||
|
cache: true
|
13
config/sync/core.entity_view_mode.user.compact.yml
Normal file
13
config/sync/core.entity_view_mode.user.compact.yml
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
uuid: 1b8b8c88-14f6-4f8a-99c5-f763f8858925
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- user
|
||||||
|
_core:
|
||||||
|
default_config_hash: TtD7OuGskOsQfoGyxXkrdtllBpR37J19d5BMQDZWJgA
|
||||||
|
id: user.compact
|
||||||
|
label: Compact
|
||||||
|
description: ''
|
||||||
|
targetEntityType: user
|
||||||
|
cache: true
|
13
config/sync/core.entity_view_mode.user.full.yml
Normal file
13
config/sync/core.entity_view_mode.user.full.yml
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
uuid: 9d97763b-eb3c-4839-a731-4c1cad64994b
|
||||||
|
langcode: en
|
||||||
|
status: false
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- user
|
||||||
|
_core:
|
||||||
|
default_config_hash: ZbXunWS_xAvMZXFfinyvClDAb_RCVLt7gAzE3v16E-Q
|
||||||
|
id: user.full
|
||||||
|
label: 'User account'
|
||||||
|
description: ''
|
||||||
|
targetEntityType: user
|
||||||
|
cache: true
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue