初始化

master
Gdilove 2023-11-13 20:36:13 +08:00
commit 927f32325b
34105 changed files with 4653564 additions and 0 deletions

17
.editorconfig Normal file
View File

@ -0,0 +1,17 @@
# Drupal editor configuration normalization
# @see http://editorconfig.org/
# This is the top-most .editorconfig file; do not search in parent directories.
root = true
# All files.
[*]
end_of_line = LF
indent_style = space
indent_size = 2
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
[composer.{json,lock}]
indent_size = 4

27
.env.example Normal file
View File

@ -0,0 +1,27 @@
#
# Copy and rename this file to .env at root of this project.
#
# A common use case is to supply database creds via the environment. Edit settings.php
# like so:
#
# $databases['default']['default'] = [
# 'database' => getenv('MYSQL_DATABASE'),
# 'driver' => 'mysql',
# 'host' => getenv('MYSQL_HOSTNAME'),
# 'namespace' => 'Drupal\\Core\\Database\\Driver\\mysql',
# 'password' => getenv('MYSQL_PASSWORD'),
# 'port' => getenv('MYSQL_PORT'),
# 'prefix' => '',
# 'username' => getenv('MYSQL_USER'),
# ];
#
# Uncomment and populate as needed.
# MYSQL_DATABASE=
# MYSQL_HOSTNAME=
# MYSQL_PASSWORD=
# MYSQL_PORT=
# MYSQL_USER=
# Another common use case is to set Drush's --uri via environment.
# DRUSH_OPTIONS_URI=http://example.com

61
.gitattributes vendored Normal file
View File

@ -0,0 +1,61 @@
# Drupal git normalization
# @see https://www.kernel.org/pub/software/scm/git/docs/gitattributes.html
# @see https://www.drupal.org/node/1542048
# Normally these settings would be done with macro attributes for improved
# readability and easier maintenance. However macros can only be defined at the
# repository root directory. Drupal avoids making any assumptions about where it
# is installed.
# Define text file attributes.
# - Treat them as text.
# - Ensure no CRLF line-endings, neither on checkout nor on checkin.
# - Detect whitespace errors.
# - Exposed by default in `git diff --color` on the CLI.
# - Validate with `git diff --check`.
# - Deny applying with `git apply --whitespace=error-all`.
# - Fix automatically with `git apply --whitespace=fix`.
*.config text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.css text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.dist text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.engine text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=php linguist-language=php
*.html text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=html
*.inc text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=php linguist-language=php
*.install text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=php linguist-language=php
*.js text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.json text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.lock text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.map text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.md text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.module text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=php linguist-language=php
*.php text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=php linguist-language=php
*.po text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.profile text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=php linguist-language=php
*.script text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.sh text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=php linguist-language=php
*.sql text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.svg text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.theme text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=php linguist-language=php
*.twig text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.txt text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.xml text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.yml text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
# Define binary file attributes.
# - Do not treat them as text.
# - Include binary diff in patches instead of "binary files differ."
*.eot -text diff
*.exe -text diff
*.gif -text diff
*.gz -text diff
*.ico -text diff
*.jpeg -text diff
*.jpg -text diff
*.otf -text diff
*.phar -text diff
*.png -text diff
*.svgz -text diff
*.ttf -text diff
*.woff -text diff
*.woff2 -text diff

34
.gitignore vendored Normal file
View File

@ -0,0 +1,34 @@
# Ignore directories generated by Composer
#/drush/contrib/
#/vendor/
#/web/core/
#/web/modules/contrib/
#/web/themes/contrib/
#/web/profiles/contrib/
#Ignore private files
/private_files
# Ignore sensitive information and local configuration
/web/sites/development.services.yml
/web/sites/*/settings.local.php
# Ignore Drupal's file directory
/web/sites/*/files/
# Ignore SimpleTest multi-site environment.
/web/sites/simpletest
# Ignore files generated by PhpStorm
/.idea/
# Ignore platform.sh files
# Ignore .env files as they are personal
/.env
# Ignore lando file
/.lando.yml
# Ignore database dumps
*.sql
*.sql.gz

150
composer.json Normal file
View File

@ -0,0 +1,150 @@
{
"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/addtoany": "^2.0",
"drupal/admin_toolbar": "^3.3",
"drupal/advagg": "^6.0@alpha",
"drupal/backup_migrate": "^5.0",
"drupal/blazy": "^2.15",
"drupal/block_visibility_groups": "^2.0",
"drupal/bootstrap_layout_builder": "^2.1",
"drupal/color": "^1.0",
"drupal/color_field": "^3.0",
"drupal/colorbox": "^2.0",
"drupal/commerce": "^2.30",
"drupal/commerce_currency_resolver": "^1.61",
"drupal/commerce_exchanger": "^1.21",
"drupal/commerce_shipping": "^2.6",
"drupal/commerce_stock": "1.x-dev@dev",
"drupal/contact_block": "^2.0",
"drupal/core-composer-scaffold": "^10.0",
"drupal/core-project-message": "^10.0",
"drupal/core-recommended": "^10.0",
"drupal/ctools": "^4.0",
"drupal/eck": "^2.0",
"drupal/entity_reference_facet_link": "^2.0",
"drupal/facets": "^2.0",
"drupal/facets_pretty_paths": "^1.4",
"drupal/facets_short_pretty_paths": "^1.0@alpha",
"drupal/fast_404": "^3.0@alpha",
"drupal/field_timer": "^2.0",
"drupal/flag": "^4.0@beta",
"drupal/gin": "^3.0@RC",
"drupal/gin_lb": "^1.0@RC",
"drupal/gin_toolbar": "^1.0@RC",
"drupal/image_delta_formatter": "1.x-dev@dev",
"drupal/inline_entity_form": "^1.0@RC",
"drupal/lang_dropdown": "2.x-dev@dev",
"drupal/languageicons": "^2.0@beta",
"drupal/layout_builder_blocks": "^1.1",
"drupal/layout_builder_iframe_modal": "^1.3",
"drupal/metatag": "^2.0@RC",
"drupal/pathauto": "^1.11",
"drupal/physical": "^1.3",
"drupal/purge": "^3.4",
"drupal/queue_ui": "^3.1",
"drupal/quicklink": "^2.0",
"drupal/redirect": "^1.8",
"drupal/redis": "^1.6",
"drupal/remove_http_headers": "^2.0",
"drupal/search_api": "^1.29",
"drupal/search_api_autocomplete": "^1.7",
"drupal/search_api_solr": "^4.2",
"drupal/simplenews": "^3.0@beta",
"drupal/sitemap": "^2.0@beta",
"drupal/token": "^1.10",
"drupal/varnish_purge": "^2.2",
"drupal/video_embed_field": "^2.5",
"drupal/votingapi": "^3.0@beta",
"drupal/warmer": "^2.0",
"drupal/xmlsitemap": "^1.4",
"drush/drush": "^11.3"
},
"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
},
"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, youve 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"
]
}
}
}

11077
composer.lock generated Normal file

File diff suppressed because it is too large Load Diff

27
config/sync/.htaccess Normal file
View File

@ -0,0 +1,27 @@
# Deny all requests from Apache 2.4+.
<IfModule mod_authz_core.c>
Require all denied
</IfModule>
# Deny all requests from Apache 2.0-2.2.
<IfModule !mod_authz_core.c>
Deny from all
</IfModule>
# Turn off all options we don't need.
Options -Indexes -ExecCGI -Includes -MultiViews
# Set the catch-all handler to prevent scripts from being executed.
SetHandler Drupal_Security_Do_Not_Remove_See_SA_2006_006
<Files *>
# Override the handler again if we're run later in the evaluation list.
SetHandler Drupal_Security_Do_Not_Remove_See_SA_2013_003
</Files>
# If we know how to do it safely, disable the PHP engine entirely.
<IfModule mod_php7.c>
php_flag engine off
</IfModule>
<IfModule mod_php.c>
php_flag engine off
</IfModule>

View File

@ -0,0 +1,2 @@
langcode: zh-hans
menu_depth: 4

View File

@ -0,0 +1,3 @@
langcode: zh-hans
max_bundle_number: 20
hoverintent_functionality: true

View File

@ -0,0 +1,26 @@
_core:
default_config_hash: Vi3b7DLLNw5X1UX9XG8mnU-ysvyNgdyvAasxV9yck3I
css:
brotli: true
combine_media: false
fix_type: true
preserve_external: false
dns_prefetch: false
path:
convert:
absolute_to_protocol_relative: true
absolute: false
force_https: false
cache_level: 2
cron_frequency: 86400
enabled: true
global_counter: 0
immutable: true
js:
brotli: true
fix_type: true
preserve_external: false
skip_enabled_preprocess_check: false
show_bypass_cookie_message: true
symlinks: false
symlinksifownermatch: false

View File

@ -0,0 +1,4 @@
_core:
default_config_hash: 0Ik3mSe1aqADq5bKW6Y8NwGNVVckEhktzUOkbp9nJCA
minifier: 2
add_license: true

View File

@ -0,0 +1,6 @@
_core:
default_config_hash: k7-AYL8Wmk2amLGnCXfc-tTxZGCaduwh8RFMUPW8Tq0
add_license: true
minifier: 0
ratio_max: 0.9
ratio_min: 0.1

View File

@ -0,0 +1,2 @@
langcode: zh-hans
interval: 10800

View File

@ -0,0 +1,12 @@
uuid: 42b7637f-2039-4d5a-bba4-878243acea77
langcode: zh-hans
status: true
dependencies: { }
_core:
default_config_hash: 4iy5jeoTP0Y4BqSaV1C6cz4GKLFea1tWzk3ez1_CMVU
id: private_files
label: 'Private Files Directory'
type: Directory
config:
name: 'Private Files Directory'
directory: 'private://backup_migrate/'

View File

@ -0,0 +1,15 @@
uuid: dd63d5dc-3119-4797-bcb2-5088c1e1c5d0
langcode: zh-hans
status: true
dependencies: { }
_core:
default_config_hash: B6mQr6j7ZcqZB14S8ytJEXCYzOQ1mcOW9-oWYbtkbJc
id: daily_schedule
label: 'Daily Schedule'
enabled: false
keep: null
period: null
cron: null
source_id: default_db
destination_id: private_files
settings_profile_id: null

View File

@ -0,0 +1,11 @@
uuid: 125622af-dcd9-4678-88ec-0f1cb18a7137
langcode: zh-hans
status: true
dependencies: { }
_core:
default_config_hash: I0ambmTIGFVABBaGMLbQcw-a5eWKxnsz7k2COEPKga4
id: default_db
label: 'Default Drupal Database'
type: DefaultDB
config:
name: 'Default Drupal Database'

View File

@ -0,0 +1,11 @@
uuid: 33ac51c4-2206-4fde-8313-be7378b8f307
langcode: zh-hans
status: true
dependencies: { }
_core:
default_config_hash: 3UIiYanpaojRQR_MLcmaOBTXo5mH-T4CGoTEmr7Rv2M
id: entire_site
label: 'Entire Site (do not use)'
type: EntireSite
config:
name: 'Entire Site (do not use)'

View File

@ -0,0 +1,12 @@
uuid: d1ef0a11-c29e-4799-b087-0f752101cf54
langcode: zh-hans
status: true
dependencies: { }
_core:
default_config_hash: skfrgCS5JC2HXCG6QfQfiuuFWy_-OQ5Qs0FvaPwc6Vc
id: private_files
label: 'Private Files Directory'
type: DrupalFiles
config:
name: 'Private Files Directory'
directory: 'private://'

View File

@ -0,0 +1,12 @@
uuid: adc39f84-90cb-456e-b7fa-df5124fda017
langcode: zh-hans
status: true
dependencies: { }
_core:
default_config_hash: PY9HA-hogF4_qq5gZ-TqZDTixx170-APxTcq4rpa014
id: public_files
label: 'Public Files Directory'
type: DrupalFiles
config:
name: 'Public Files Directory'
directory: 'public://'

View File

@ -0,0 +1,30 @@
_core:
default_config_hash: 3EWrecxG6luNdVge8RNWCN7oAVTAMVGFqnxzMsnppAs
admin_css: true
nojs:
lazy: '0'
classlist: '0'
polyfill: '0'
promise: '0'
raf: '0'
fx: ''
blur_client: false
blur_storage: false
blur_minwidth: 0
noscript: false
responsive_image: false
one_pixel: true
placeholder: ''
unstyled_extensions: ''
extras: { }
blazy:
loadInvisible: false
offset: 100
saveViewportOffsetDelay: 50
validateDelay: 25
container: ''
io:
unblazy: false
rootMargin: 0px
threshold: '0'
disconnect: false

View File

@ -0,0 +1,57 @@
uuid: fac33222-99f7-4940-9ff1-53360add874b
langcode: en
status: true
dependencies:
content:
- 'block_content:basic:b4ea29ce-26dd-4937-a67f-ca3cb34e22d0'
module:
- block_content
- block_visibility_groups
- hsblock
- system
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-left
classes: ''
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: ''
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: about_links
theme: martis
region: footer_third
weight: -18
provider: null
plugin: 'block_content:b4ea29ce-26dd-4937-a67f-ca3cb34e22d0'
settings:
id: 'block_content:b4ea29ce-26dd-4937-a67f-ca3cb34e22d0'
label: About
label_display: visible
provider: block_content
status: true
info: ''
view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: ''
request_path:
id: request_path
negate: true
context_mapping: { }
pages: "/personal-01\r\n/personal-02"

View File

@ -0,0 +1,53 @@
uuid: 7938c713-27f4-49fe-b266-6941691629d0
langcode: en
status: true
dependencies:
config:
- block_visibility_groups.block_visibility_group.home_personal_01
content:
- 'block_content:basic:2093e8e3-7ce2-4f95-a794-d5b65c32e18a'
module:
- block_content
- block_visibility_groups
- hsblock
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: 'About Me'
block_title_style: block-title-1
block_title_align: block-title-left
classes: ''
block_padding_top: 100px
block_padding_right: ''
block_padding_bottom: ''
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: about_me
theme: martis
region: content_wide_top
weight: -64
provider: null
plugin: 'block_content:2093e8e3-7ce2-4f95-a794-d5b65c32e18a'
settings:
id: 'block_content:2093e8e3-7ce2-4f95-a794-d5b65c32e18a'
label: 'I am an award winning, multi-talented digital designer and developer with many years creative experiences.'
label_display: '0'
provider: block_content
status: true
info: ''
view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: home_personal_01

View File

@ -0,0 +1,53 @@
uuid: 73d5d36f-638c-4d15-83e4-302de2a93053
langcode: en
status: true
dependencies:
config:
- block_visibility_groups.block_visibility_group.home_personal_02
content:
- 'block_content:feature_block:3a521d44-09f4-4a13-b0d9-65c80337eb45'
module:
- block_content
- block_visibility_groups
- hsblock
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: ''
block_title_style: block-title-2
block_title_align: block-title-left
classes: pb-0
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: ''
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: about_me_2
theme: martis
region: content_wide
weight: -24
provider: null
plugin: 'block_content:3a521d44-09f4-4a13-b0d9-65c80337eb45'
settings:
id: 'block_content:3a521d44-09f4-4a13-b0d9-65c80337eb45'
label: 'I am a multi-talented digital designer and developer with many years creative experiences.'
label_display: visible
provider: block_content
status: true
info: ''
view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: home_personal_02

View File

@ -0,0 +1,53 @@
uuid: 3d55078f-74ec-496d-891c-fefbdbfe09e2
langcode: en
status: true
dependencies:
config:
- block_visibility_groups.block_visibility_group.home_personal_01
content:
- 'block_content:basic:347f8514-91b6-4a36-9c12-30e14e72c9d6'
module:
- block_content
- block_visibility_groups
- hsblock
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-left
classes: dark-bg
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: ''
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: about_me_address_text
theme: martis
region: content_widget_first
weight: 0
provider: null
plugin: 'block_content:347f8514-91b6-4a36-9c12-30e14e72c9d6'
settings:
id: 'block_content:347f8514-91b6-4a36-9c12-30e14e72c9d6'
label: 'About Me Address'
label_display: '0'
provider: block_content
status: true
info: ''
view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: home_personal_01

View File

@ -0,0 +1,53 @@
uuid: 7ce5b9b1-c6fb-466a-b89a-ad600e87202c
langcode: en
status: true
dependencies:
config:
- block_visibility_groups.block_visibility_group.home_personal_01
content:
- 'block_content:basic:cc63cdf6-16d1-41ee-9742-50f68879bcfd'
module:
- block_content
- block_visibility_groups
- hsblock
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-left
classes: animted-bg-color
block_padding_top: 70px
block_padding_right: ''
block_padding_bottom: 60px
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: about_me_facts
theme: martis
region: content
weight: -56
provider: null
plugin: 'block_content:cc63cdf6-16d1-41ee-9742-50f68879bcfd'
settings:
id: 'block_content:cc63cdf6-16d1-41ee-9742-50f68879bcfd'
label: 'About Me Fact Counter'
label_display: '0'
provider: block_content
status: true
info: ''
view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: home_personal_01

View File

@ -0,0 +1,53 @@
uuid: 997cb10b-a0be-4526-bd57-8da338e74a07
langcode: en
status: true
dependencies:
config:
- block_visibility_groups.block_visibility_group.about
content:
- 'block_content:feature_block:540de843-233b-4d75-b156-59da38fc12c1'
module:
- block_content
- block_visibility_groups
- hsblock
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: 'GET TO KNOW ABOUT US'
block_title_style: block-title-2
block_title_align: block-title-left
classes: ''
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: ''
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: about_us
theme: martis
region: content
weight: -59
provider: null
plugin: 'block_content:540de843-233b-4d75-b156-59da38fc12c1'
settings:
id: 'block_content:540de843-233b-4d75-b156-59da38fc12c1'
label: 'We help businesses succeed beyond limitation through strategic approach.'
label_display: visible
provider: block_content
status: true
info: ''
view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: about

View File

@ -0,0 +1,53 @@
uuid: 707c0db3-6635-4069-857e-0140838403af
langcode: en
status: true
dependencies:
config:
- block_visibility_groups.block_visibility_group.about
content:
- 'block_content:feature_block:451fca03-14ca-472a-9103-7b3dd2801510'
module:
- block_content
- block_visibility_groups
- hsblock
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-left
classes: ''
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: ''
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: about_us2
theme: martis
region: content_wide
weight: -57
provider: null
plugin: 'block_content:451fca03-14ca-472a-9103-7b3dd2801510'
settings:
id: 'block_content:451fca03-14ca-472a-9103-7b3dd2801510'
label: 'Our area of expertise is so broad to accommodate all your business needs'
label_display: visible
provider: block_content
status: true
info: ''
view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: about

View File

@ -0,0 +1,57 @@
uuid: 98ae8494-9286-4f8c-ac19-cf29d1aa5d60
langcode: en
status: true
dependencies:
content:
- 'block_content:basic:50758222-d7f2-4b1d-9a23-45b33cb9e302'
module:
- block_content
- block_visibility_groups
- hsblock
- system
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-left
classes: ''
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: ''
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: account_links
theme: martis
region: footer_fifth
weight: -18
provider: null
plugin: 'block_content:50758222-d7f2-4b1d-9a23-45b33cb9e302'
settings:
id: 'block_content:50758222-d7f2-4b1d-9a23-45b33cb9e302'
label: Account
label_display: visible
provider: block_content
status: true
info: ''
view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: ''
request_path:
id: request_path
negate: true
context_mapping: { }
pages: "/personal-01\r\n/personal-02"

View File

@ -0,0 +1,50 @@
uuid: d8072cc6-0856-49d2-b687-0e638c5d2c24
langcode: en
status: true
dependencies:
config:
- block_visibility_groups.block_visibility_group.product_catalog
- facets.facet.brand
module:
- block_visibility_groups
- facets
- hsblock
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-left
classes: ''
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: ''
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: brand
theme: martis
region: sidebar_first
weight: -42
provider: null
plugin: 'facet_block:brand'
settings:
id: 'facet_block:brand'
label: Brands
label_display: visible
provider: facets
block_id: brand
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: product_catalog

View File

@ -0,0 +1,53 @@
uuid: 75cbe896-fd7f-4f56-8555-7a00f9d73b78
langcode: en
status: true
dependencies:
config:
- block_visibility_groups.block_visibility_group.about
content:
- 'block_content:call_to_action:0501b135-3732-406b-997a-10542d01d0cc'
module:
- block_content
- block_visibility_groups
- hsblock
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-left
classes: colored-bg
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: ''
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: call_to_action_about
theme: martis
region: content_wide
weight: -51
provider: null
plugin: 'block_content:0501b135-3732-406b-997a-10542d01d0cc'
settings:
id: 'block_content:0501b135-3732-406b-997a-10542d01d0cc'
label: 'Call to action About'
label_display: '0'
provider: block_content
status: true
info: ''
view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: about

View File

@ -0,0 +1,53 @@
uuid: 1ef2cd2e-04e6-4bf2-8e79-624ae2957447
langcode: en
status: true
dependencies:
config:
- block_visibility_groups.block_visibility_group.home_personal_01
content:
- 'block_content:call_to_action:71d4ceae-a1d1-403b-b25f-073534a86361'
module:
- block_content
- block_visibility_groups
- hsblock
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: 'HIRE ME TO CHANGE YOUR BRAND'
block_title_style: block-title-2
block_title_align: block-title-center
classes: ''
block_padding_top: 80px
block_padding_right: ''
block_padding_bottom: 80px
block_padding_left: ''
block_text_color: ''
block_bg_color: '#feb800'
block_bg_image_path: /themes/custom/martis/assets/images/bg/bg5.jpg
block_bg_repeat: no-repeat
block_bg_position: 'center center'
block_bg_size: ''
block_parallax_bg: parallax-bg
id: call_to_action_h9
theme: martis
region: content_wide
weight: -28
provider: null
plugin: 'block_content:71d4ceae-a1d1-403b-b25f-073534a86361'
settings:
id: 'block_content:71d4ceae-a1d1-403b-b25f-073534a86361'
label: 'Do you have a project, and you are looking for a creative solutions'
label_display: visible
provider: block_content
status: true
info: ''
view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: home_personal_01

View File

@ -0,0 +1,53 @@
uuid: d9778f2b-5562-4f78-b9a0-e549e03eb70f
langcode: en
status: true
dependencies:
config:
- block_visibility_groups.block_visibility_group.home_corporate_01
content:
- 'block_content:call_to_action:bf16384d-fb82-4c71-80ff-ec81db3b7058'
module:
- block_content
- block_visibility_groups
- hsblock
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-left
classes: colored-bg
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: ''
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: call_to_action_home05
theme: martis
region: content_wide
weight: -50
provider: null
plugin: 'block_content:bf16384d-fb82-4c71-80ff-ec81db3b7058'
settings:
id: 'block_content:bf16384d-fb82-4c71-80ff-ec81db3b7058'
label: 'Ready to kick start that project & build great brand'
label_display: visible
provider: block_content
status: true
info: ''
view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: home_corporate_01

View File

@ -0,0 +1,53 @@
uuid: cba55798-d337-4e92-8a0a-e2d288f70791
langcode: en
status: true
dependencies:
config:
- block_visibility_groups.block_visibility_group.home_corporate_02
content:
- 'block_content:call_to_action:71d4ceae-a1d1-403b-b25f-073534a86361'
module:
- block_content
- block_visibility_groups
- hsblock
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: 'HIRE US TO CHANGE YOUR BRAND'
block_title_style: block-title-2
block_title_align: block-title-left
classes: ''
block_padding_top: 80px
block_padding_right: ''
block_padding_bottom: 80px
block_padding_left: ''
block_text_color: text-light
block_bg_color: '#19212c'
block_bg_image_path: /themes/custom/martis/assets/images/bg/bg-map.png
block_bg_repeat: no-repeat
block_bg_position: 'center center'
block_bg_size: contain
block_parallax_bg: ''
id: call_to_action_home06
theme: martis
region: content_wide
weight: -42
provider: null
plugin: 'block_content:71d4ceae-a1d1-403b-b25f-073534a86361'
settings:
id: 'block_content:71d4ceae-a1d1-403b-b25f-073534a86361'
label: 'Do you have a project, and you are looking for a creative solutions'
label_display: visible
provider: block_content
status: true
info: ''
view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: home_corporate_02

View File

@ -0,0 +1,53 @@
uuid: bdfc8920-11d4-4746-856c-6f87d4912d58
langcode: en
status: true
dependencies:
config:
- block_visibility_groups.block_visibility_group.home_corporate_03
content:
- 'block_content:call_to_action:bf16384d-fb82-4c71-80ff-ec81db3b7058'
module:
- block_content
- block_visibility_groups
- hsblock
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: fullwidth
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-left
classes: dark-bg
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: ''
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: /themes/custom/martis/assets/images/bg/bg3.jpg
block_bg_repeat: no-repeat
block_bg_position: 'center top'
block_bg_size: ''
block_parallax_bg: parallax-bg
id: call_to_action_home07
theme: martis
region: content_wide
weight: -32
provider: null
plugin: 'block_content:bf16384d-fb82-4c71-80ff-ec81db3b7058'
settings:
id: 'block_content:bf16384d-fb82-4c71-80ff-ec81db3b7058'
label: 'Get started with creating that creative idea with unlimited features.'
label_display: visible
provider: block_content
status: true
info: ''
view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: home_corporate_03

View File

@ -0,0 +1,57 @@
uuid: 3dc6e24f-7a5f-42f3-a309-a299ec418ab8
langcode: en
status: true
dependencies:
content:
- 'block_content:basic:ee24b9ac-7075-4cae-9e55-6e293b996fcc'
module:
- block_content
- block_visibility_groups
- hsblock
- system
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-left
classes: ''
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: ''
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: call_to_order
theme: martis
region: header_right
weight: 0
provider: null
plugin: 'block_content:ee24b9ac-7075-4cae-9e55-6e293b996fcc'
settings:
id: 'block_content:ee24b9ac-7075-4cae-9e55-6e293b996fcc'
label: 'Call to Order'
label_display: '0'
provider: block_content
status: true
info: ''
view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: ''
request_path:
id: request_path
negate: true
context_mapping: { }
pages: "/corporate-01\r\n/corporate-02\r\n/corporate-03\r\n/personal-01\r\n/personal-02"

View File

@ -0,0 +1,50 @@
uuid: 3ebda765-cfd6-4c6f-bf5e-9d899866c86f
langcode: en
status: true
dependencies:
config:
- block_visibility_groups.block_visibility_group.product_catalog
- facets.facet.category
module:
- block_visibility_groups
- facets
- hsblock
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-left
classes: ''
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: ''
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: category
theme: martis
region: sidebar_first
weight: -43
provider: null
plugin: 'facet_block:category'
settings:
id: 'facet_block:category'
label: Categories
label_display: visible
provider: facets
block_id: category
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: product_catalog

View File

@ -0,0 +1,55 @@
uuid: b3551404-3223-424d-8255-a33e9fdf3b38
langcode: en
status: true
dependencies:
config:
- facets.facet.category_menu
module:
- block_visibility_groups
- facets
- hsblock
- system
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-left
classes: ''
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: ''
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: category_menu
theme: martis
region: header_category_menu
weight: -27
provider: null
plugin: 'facet_block:category_menu'
settings:
id: 'facet_block:category_menu'
label: 'All Categories'
label_display: visible
provider: facets
block_id: category_menu
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: ''
request_path:
id: request_path
negate: false
context_mapping: { }
pages: "/shop-01\r\n/products\r\n/product/*"

View File

@ -0,0 +1,50 @@
uuid: 1975d3f4-8405-4044-9e5b-cf2e04cbd938
langcode: en
status: true
dependencies:
config:
- block_visibility_groups.block_visibility_group.home_shop_02
- facets.facet.category_menu
module:
- block_visibility_groups
- facets
- hsblock
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-left
classes: open
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: ''
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: category_menu2
theme: martis
region: header_category_menu
weight: -25
provider: null
plugin: 'facet_block:category_menu'
settings:
id: 'facet_block:category_menu'
label: 'All Categories'
label_display: visible
provider: facets
block_id: category_menu2
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: home_shop_02

View File

@ -0,0 +1,50 @@
uuid: c591383d-1e64-4564-9946-ac0b9a6c2478
langcode: en
status: true
dependencies:
config:
- block_visibility_groups.block_visibility_group.home_shop_05
- facets.facet.category_menu
module:
- block_visibility_groups
- facets
- hsblock
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-left
classes: category-menu-alt
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: ''
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: category_menu_alt
theme: martis
region: header_category_menu
weight: 0
provider: null
plugin: 'facet_block:category_menu'
settings:
id: 'facet_block:category_menu'
label: 'Shop by Category'
label_display: visible
provider: facets
block_id: category_menu_alt
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: home_shop_05

View File

@ -0,0 +1,50 @@
uuid: 4d8c638f-af5c-4466-9ab3-4e5ef2bf5363
langcode: en
status: true
dependencies:
config:
- block_visibility_groups.block_visibility_group.home_shop_03
- facets.facet.category_menu
module:
- block_visibility_groups
- facets
- hsblock
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-left
classes: open
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: ''
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: category_menu_open
theme: martis
region: header_category_menu
weight: -26
provider: null
plugin: 'facet_block:category_menu'
settings:
id: 'facet_block:category_menu'
label: 'All Categories'
label_display: visible
provider: facets
block_id: category_menu_open
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: home_shop_03

View File

@ -0,0 +1,50 @@
uuid: 6445a979-b3bb-40a4-833d-06a23ca32b80
langcode: en
status: true
dependencies:
config:
- block_visibility_groups.block_visibility_group.home_shop_04
- facets.facet.category_menu
module:
- block_visibility_groups
- facets
- hsblock
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-left
classes: ''
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: ''
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: category_menu_side
theme: martis
region: sidebar_first
weight: -41
provider: null
plugin: 'facet_block:category_menu'
settings:
id: 'facet_block:category_menu'
label: 'All Categories'
label_display: visible
provider: facets
block_id: category_menu_side
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: home_shop_04

View File

@ -0,0 +1,52 @@
uuid: da4e6ee3-c53d-4ab1-9472-78645cfa2b49
langcode: en
status: true
dependencies:
module:
- block_visibility_groups
- commerce_checkout
- hsblock
- system
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-left
classes: ''
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: ''
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: checkout_progress
theme: martis
region: content
weight: -65
provider: null
plugin: commerce_checkout_progress
settings:
id: commerce_checkout_progress
label: 'Checkout progress'
label_display: '0'
provider: commerce_checkout
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: ''
request_path:
id: request_path
negate: false
context_mapping: { }
pages: '/checkout/*'

View File

@ -0,0 +1,22 @@
uuid: c476253e-6c60-4fd3-99d7-51a9eafa7b4a
langcode: zh-hans
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: 导航路径
label_display: '0'
provider: system
visibility: { }

View File

@ -0,0 +1,22 @@
uuid: 08864c98-e648-48fa-a01e-279863cc47d7
langcode: zh-hans
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: 主页内容
label_display: '0'
provider: system
visibility: { }

View File

@ -0,0 +1,22 @@
uuid: caeb278e-b1a7-43ad-94f2-443a08d471ea
langcode: zh-hans
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: 帮助
label_display: '0'
provider: help
visibility: { }

View File

@ -0,0 +1,20 @@
uuid: 053da412-9c8f-4943-a97b-266cc57c118f
langcode: zh-hans
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: 主要管理动作
label_display: '0'
provider: core
visibility: { }

View File

@ -0,0 +1,22 @@
uuid: ee1b4e8d-9f69-40c5-93cd-6e799c40322e
langcode: zh-hans
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: 状态消息
label_display: '0'
provider: system
visibility: { }

View File

@ -0,0 +1,20 @@
uuid: 8cb94647-6a92-4f03-bb3a-c16bcb9a6d63
langcode: zh-hans
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: 页面标题
label_display: '0'
provider: core
visibility: { }

View File

@ -0,0 +1,22 @@
uuid: d3fc10f0-a6a5-4c2a-8e9e-55313d2f90ec
langcode: zh-hans
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: 主标签
label_display: '0'
provider: core
primary: true
secondary: false
visibility: { }

View File

@ -0,0 +1,22 @@
uuid: dec9432f-e46d-45c6-b174-b538567e2448
langcode: zh-hans
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: 次标签
label_display: '0'
provider: core
primary: false
secondary: true
visibility: { }

View File

@ -0,0 +1,57 @@
uuid: c3e78d33-139e-4acf-9a9a-1a82ce31cf6e
langcode: en
status: true
dependencies:
content:
- 'block_content:basic:9aa5ff88-bebe-4f37-94b7-8e475b514f45'
module:
- block_content
- block_visibility_groups
- hsblock
- system
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-left
classes: ''
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: ''
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: clearance_sales
theme: martis
region: header_top_first
weight: 0
provider: null
plugin: 'block_content:9aa5ff88-bebe-4f37-94b7-8e475b514f45'
settings:
id: 'block_content:9aa5ff88-bebe-4f37-94b7-8e475b514f45'
label: 'Clearance sales'
label_display: '0'
provider: block_content
status: true
info: ''
view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: ''
request_path:
id: request_path
negate: true
context_mapping: { }
pages: "/corporate-01\r\n/corporate-02\r\n/corporate-03\r\n/personal-01\r\n/personal-02"

View File

@ -0,0 +1,53 @@
uuid: 79f1f3eb-2fa3-4f73-9f00-876446c38075
langcode: en
status: true
dependencies:
config:
- block_visibility_groups.block_visibility_group.home_personal_02
content:
- 'block_content:basic:b893f808-4257-4b33-9632-a0a6e480addf'
module:
- block_content
- block_visibility_groups
- hsblock
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: 'I always ensure I put in my very best into all work without ever thinking otherwise.'
block_title_style: block-title-1
block_title_align: block-title-center
classes: ''
block_padding_top: 80px
block_padding_right: ''
block_padding_bottom: 80px
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: /themes/custom/martis/assets/images/bg/bg-h10.jpg
block_bg_repeat: no-repeat
block_bg_position: 'right bottom'
block_bg_size: contain
block_parallax_bg: ''
id: contact_address
theme: martis
region: content_wide
weight: -20
provider: null
plugin: 'block_content:b893f808-4257-4b33-9632-a0a6e480addf'
settings:
id: 'block_content:b893f808-4257-4b33-9632-a0a6e480addf'
label: 'Get in touch with me'
label_display: visible
provider: block_content
status: true
info: ''
view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: home_personal_02

View File

@ -0,0 +1,50 @@
uuid: 666d16c4-afae-48ee-9989-6522dc54b88a
langcode: en
status: true
dependencies:
config:
- block_visibility_groups.block_visibility_group.home_personal_01
- contact.form.feedback
module:
- block_visibility_groups
- contact_block
- hsblock
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: 'CONTACT ME'
block_title_style: block-title-2
block_title_align: block-title-left
classes: ''
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: ''
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: contact_block_h9
theme: martis
region: content_widget_third
weight: 0
provider: null
plugin: contact_block
settings:
id: contact_block
label: 'Get in touch with me.'
label_display: visible
provider: contact_block
contact_form: feedback
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: home_personal_01

View File

@ -0,0 +1,57 @@
uuid: aa98a25e-c56c-42d4-82bb-183c6c6ac7d9
langcode: en
status: true
dependencies:
content:
- 'block_content:basic:47ba1438-081e-4de5-9ac8-1ed3d54bdcea'
module:
- block_content
- block_visibility_groups
- hsblock
- system
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-left
classes: ''
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: ''
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: contact_page_address
theme: martis
region: content
weight: -66
provider: null
plugin: 'block_content:47ba1438-081e-4de5-9ac8-1ed3d54bdcea'
settings:
id: 'block_content:47ba1438-081e-4de5-9ac8-1ed3d54bdcea'
label: 'Contact Page Address'
label_display: '0'
provider: block_content
status: true
info: ''
view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: ''
request_path:
id: request_path
negate: false
context_mapping: { }
pages: /contact

View File

@ -0,0 +1,57 @@
uuid: 4e9f99d3-1f99-41df-b4be-ddf3edf99f32
langcode: en
status: true
dependencies:
content:
- 'block_content:basic:6266136b-af76-455e-933b-9bb914cbc722'
module:
- block_content
- block_visibility_groups
- hsblock
- system
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-left
classes: ''
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: ''
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: copyright_text
theme: martis
region: footer_bottom_first
weight: -77
provider: null
plugin: 'block_content:6266136b-af76-455e-933b-9bb914cbc722'
settings:
id: 'block_content:6266136b-af76-455e-933b-9bb914cbc722'
label: 'Copyright Text'
label_display: '0'
provider: block_content
status: true
info: ''
view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: ''
request_path:
id: request_path
negate: true
context_mapping: { }
pages: /personal-02

View File

@ -0,0 +1,53 @@
uuid: 2052a459-3f79-463b-ab2a-ae971b0968a4
langcode: en
status: true
dependencies:
config:
- block_visibility_groups.block_visibility_group.home_personal_02
content:
- 'block_content:basic:6266136b-af76-455e-933b-9bb914cbc722'
module:
- block_content
- block_visibility_groups
- hsblock
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-left
classes: text-center
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: 60px
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: copyright_text2
theme: martis
region: footer_bottom_first
weight: -75
provider: null
plugin: 'block_content:6266136b-af76-455e-933b-9bb914cbc722'
settings:
id: 'block_content:6266136b-af76-455e-933b-9bb914cbc722'
label: 'Copyright Text'
label_display: '0'
provider: block_content
status: true
info: ''
view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: home_personal_02

View File

@ -0,0 +1,53 @@
uuid: 568712f8-66d8-4e5b-a382-378d78cf174b
langcode: en
status: true
dependencies:
config:
- block_visibility_groups.block_visibility_group.home_personal_02
content:
- 'block_content:call_to_action:04f31cc2-8cf2-4fd0-bb82-a6dd67affdc5'
module:
- block_content
- block_visibility_groups
- hsblock
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: fullwidth
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-left
classes: colored-bg
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: ''
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: cta_h10
theme: martis
region: content_wide
weight: -19
provider: null
plugin: 'block_content:04f31cc2-8cf2-4fd0-bb82-a6dd67affdc5'
settings:
id: 'block_content:04f31cc2-8cf2-4fd0-bb82-a6dd67affdc5'
label: 'Need a professional touch with a class? '
label_display: visible
provider: block_content
status: true
info: ''
view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: home_personal_02

View File

@ -0,0 +1,52 @@
uuid: dc716beb-28bb-4635-8901-3cf8b124341b
langcode: en
status: true
dependencies:
module:
- block_visibility_groups
- commerce_currency_resolver
- hsblock
- system
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-left
classes: ''
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: ''
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: currency_block
theme: martis
region: header_top_second
weight: -43
provider: null
plugin: commerce_currency_resolver
settings:
id: commerce_currency_resolver
label: 'Currency block'
label_display: '0'
provider: commerce_currency_resolver
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: ''
request_path:
id: request_path
negate: true
context_mapping: { }
pages: "/corporate-01\r\n/corporate-02\r\n/corporate-03\r\n/personal-01\r\n/personal-02"

View File

@ -0,0 +1,53 @@
uuid: 2d0e7499-fcee-48b7-8a01-644807235c8d
langcode: en
status: true
dependencies:
config:
- block_visibility_groups.block_visibility_group.home_shop_03
content:
- 'block_content:deals:eff3fb86-9ee5-48a9-b9ea-b8718c6a575e'
module:
- block_content
- block_visibility_groups
- hsblock
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-right
classes: ''
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: ''
block_padding_left: ''
block_text_color: ''
block_bg_color: '#f8fafa'
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: deals_of_the_day
theme: martis
region: content_wide_top
weight: -71
provider: null
plugin: 'block_content:eff3fb86-9ee5-48a9-b9ea-b8718c6a575e'
settings:
id: 'block_content:eff3fb86-9ee5-48a9-b9ea-b8718c6a575e'
label: 'Deals of the day'
label_display: visible
provider: block_content
status: true
info: ''
view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: home_shop_03

View File

@ -0,0 +1,53 @@
uuid: bf48cae4-8ea7-4d75-b6de-d160d6b795a2
langcode: en
status: true
dependencies:
config:
- block_visibility_groups.block_visibility_group.home_shop_05
content:
- 'block_content:deals:eff3fb86-9ee5-48a9-b9ea-b8718c6a575e'
module:
- block_content
- block_visibility_groups
- hsblock
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-center
classes: ''
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: ''
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: /themes/custom/martis/assets/images/bg/bg1.png
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: deals_of_the_day_h8
theme: martis
region: content_wide_top
weight: -65
provider: null
plugin: 'block_content:eff3fb86-9ee5-48a9-b9ea-b8718c6a575e'
settings:
id: 'block_content:eff3fb86-9ee5-48a9-b9ea-b8718c6a575e'
label: 'Deals of the day'
label_display: visible
provider: block_content
status: true
info: ''
view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: home_shop_05

View File

@ -0,0 +1,53 @@
uuid: e67cbf63-ce92-4b94-aa5c-b8c706e3b722
langcode: en
status: true
dependencies:
config:
- block_visibility_groups.block_visibility_group.service_sidebar
content:
- 'block_content:basic:46b6ff3d-2d48-4057-889a-13813a869cd3'
module:
- block_content
- block_visibility_groups
- hsblock
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-left
classes: ''
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: ''
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: download_brochure
theme: martis
region: sidebar_second
weight: -68
provider: null
plugin: 'block_content:46b6ff3d-2d48-4057-889a-13813a869cd3'
settings:
id: 'block_content:46b6ff3d-2d48-4057-889a-13813a869cd3'
label: 'Download Brochure'
label_display: '0'
provider: block_content
status: true
info: ''
view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: service_sidebar

View File

@ -0,0 +1,53 @@
uuid: a6e2076c-b9b0-4cd1-aa27-43b5496ca11f
langcode: en
status: true
dependencies:
config:
- block_visibility_groups.block_visibility_group.home_shop_02
content:
- 'block_content:basic:d1d7b69b-acf2-4914-a4f6-7a797716ccee'
module:
- block_content
- block_visibility_groups
- hsblock
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-left
classes: ''
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: ''
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: empty_block_h2
theme: martis
region: sidebar_first
weight: 0
provider: null
plugin: 'block_content:d1d7b69b-acf2-4914-a4f6-7a797716ccee'
settings:
id: 'block_content:d1d7b69b-acf2-4914-a4f6-7a797716ccee'
label: 'Empty Block'
label_display: '0'
provider: block_content
status: true
info: ''
view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: home_shop_02

View File

@ -0,0 +1,55 @@
uuid: 27498e4d-d01e-4c1b-8d74-56acb35fb19d
langcode: en
status: true
dependencies:
config:
- views.view.product_catalog
module:
- block_visibility_groups
- hsblock
- system
- views
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-left
classes: ''
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: ''
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: exposedformproduct_catalogproduct_catalog_search
theme: martis
region: header_search
weight: 0
provider: null
plugin: 'views_exposed_filter_block:product_catalog-product_catalog_search'
settings:
id: 'views_exposed_filter_block:product_catalog-product_catalog_search'
label: ''
label_display: '0'
provider: views
views_label: ''
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: ''
request_path:
id: request_path
negate: true
context_mapping: { }
pages: "/corporate-01\r\n/corporate-02\r\n/corporate-03\r\n/personal-01\r\n/personal-02"

View File

@ -0,0 +1,53 @@
uuid: 49a697b6-93e2-4bdd-b024-08af7a110f61
langcode: en
status: true
dependencies:
config:
- block_visibility_groups.block_visibility_group.about
content:
- 'block_content:basic:5eae88d2-6c7b-4f14-87a0-68ddeb1be6cb'
module:
- block_content
- block_visibility_groups
- hsblock
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-left
classes: ''
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: ''
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: fact_counter_about
theme: martis
region: content_wide
weight: -58
provider: null
plugin: 'block_content:5eae88d2-6c7b-4f14-87a0-68ddeb1be6cb'
settings:
id: 'block_content:5eae88d2-6c7b-4f14-87a0-68ddeb1be6cb'
label: 'Leading in all areas and beyond'
label_display: '0'
provider: block_content
status: true
info: ''
view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: about

View File

@ -0,0 +1,53 @@
uuid: 5d5921f5-f0cb-432b-ac00-edf67a8c31fc
langcode: en
status: true
dependencies:
config:
- block_visibility_groups.block_visibility_group.home_corporate_01
content:
- 'block_content:basic:215e2244-9724-4fe5-9771-2aee0a182675'
module:
- block_content
- block_visibility_groups
- hsblock
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-left
classes: ''
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: ''
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: fact_counter_home05
theme: martis
region: content_wide
weight: -59
provider: null
plugin: 'block_content:215e2244-9724-4fe5-9771-2aee0a182675'
settings:
id: 'block_content:215e2244-9724-4fe5-9771-2aee0a182675'
label: 'Fact Counter'
label_display: '0'
provider: block_content
status: true
info: ''
view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: home_corporate_01

View File

@ -0,0 +1,57 @@
uuid: 739b9482-b9ed-4a76-bf59-8b572be2456e
langcode: en
status: true
dependencies:
content:
- 'block_content:basic:0c7ce6a0-b522-4a46-8a00-a9a68797fadf'
module:
- block_content
- block_visibility_groups
- hsblock
- system
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-left
classes: ''
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: ''
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: footer_about
theme: martis
region: footer_first
weight: -21
provider: null
plugin: 'block_content:0c7ce6a0-b522-4a46-8a00-a9a68797fadf'
settings:
id: 'block_content:0c7ce6a0-b522-4a46-8a00-a9a68797fadf'
label: 'Footer About'
label_display: '0'
provider: block_content
status: true
info: ''
view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: ''
request_path:
id: request_path
negate: true
context_mapping: { }
pages: "/personal-01\r\n/personal-02"

View File

@ -0,0 +1,57 @@
uuid: b77ab8e9-2275-45a8-a640-9c43df3f64e5
langcode: en
status: true
dependencies:
content:
- 'block_content:basic:79816ae2-0108-4f0e-b33a-aa03950a7c86'
module:
- block_content
- block_visibility_groups
- hsblock
- system
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-left
classes: ''
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: ''
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: footer_tags
theme: martis
region: footer_sixth
weight: -18
provider: null
plugin: 'block_content:79816ae2-0108-4f0e-b33a-aa03950a7c86'
settings:
id: 'block_content:79816ae2-0108-4f0e-b33a-aa03950a7c86'
label: 'Footer Menu Tag'
label_display: '0'
provider: block_content
status: true
info: ''
view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: ''
request_path:
id: request_path
negate: false
context_mapping: { }
pages: "/shop-01\r\n/shop-03"

View File

@ -0,0 +1,53 @@
uuid: f71cadef-c086-4e9d-bafc-a1274f76885a
langcode: en
status: true
dependencies:
config:
- block_visibility_groups.block_visibility_group.home_shop_05
content:
- 'block_content:basic:cf7a03d0-c5b6-41c2-9629-0dfdc00c5c16'
module:
- block_content
- block_visibility_groups
- hsblock
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-left
classes: ''
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: ''
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: free_delivery
theme: martis
region: main_menu_right
weight: -70
provider: null
plugin: 'block_content:cf7a03d0-c5b6-41c2-9629-0dfdc00c5c16'
settings:
id: 'block_content:cf7a03d0-c5b6-41c2-9629-0dfdc00c5c16'
label: 'Free delivery'
label_display: '0'
provider: block_content
status: true
info: ''
view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: home_shop_05

View File

@ -0,0 +1,53 @@
uuid: b94b07d4-64d9-4420-9ec5-48c755c818ca
langcode: en
status: true
dependencies:
config:
- block_visibility_groups.block_visibility_group.home_corporate_02
content:
- 'block_content:basic:8c855a7b-5ed2-476f-9378-e0a163a8593d'
module:
- block_content
- block_visibility_groups
- hsblock
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-left
classes: ''
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: ''
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: get_in_touch
theme: martis
region: main_menu_right
weight: -69
provider: null
plugin: 'block_content:8c855a7b-5ed2-476f-9378-e0a163a8593d'
settings:
id: 'block_content:8c855a7b-5ed2-476f-9378-e0a163a8593d'
label: 'GET IN TOUCH'
label_display: '0'
provider: block_content
status: true
info: ''
view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: home_corporate_02

View File

@ -0,0 +1,57 @@
uuid: 7d406282-5f4b-4efe-9c5b-f931ce9861cc
langcode: en
status: true
dependencies:
content:
- 'block_content:basic:0e3add3f-ac98-4671-82fc-882d977ab5ec'
module:
- block_content
- block_visibility_groups
- hsblock
- system
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-left
classes: ''
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: ''
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: get_quote_button
theme: martis
region: header_right
weight: 0
provider: null
plugin: 'block_content:0e3add3f-ac98-4671-82fc-882d977ab5ec'
settings:
id: 'block_content:0e3add3f-ac98-4671-82fc-882d977ab5ec'
label: 'Get a Quote Button'
label_display: '0'
provider: block_content
status: true
info: ''
view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: ''
request_path:
id: request_path
negate: false
context_mapping: { }
pages: "/corporate-02\r\n/corporate-03"

View File

@ -0,0 +1,22 @@
uuid: 9966e970-3f86-4006-87bf-fec076ee1d75
langcode: zh-hans
status: true
dependencies:
module:
- system
theme:
- gin
_core:
default_config_hash: y9X3xgCsO59pQyzNLzY1D3SDJJxCHILLWkpPnmuTJ2E
id: gin_breadcrumbs
theme: gin
region: breadcrumb
weight: 0
provider: null
plugin: system_breadcrumb_block
settings:
id: system_breadcrumb_block
label: 导航路径
label_display: '0'
provider: system
visibility: { }

View File

@ -0,0 +1,22 @@
uuid: 02b0ee87-0600-43d4-bdb9-383de741c31c
langcode: zh-hans
status: true
dependencies:
module:
- system
theme:
- gin
_core:
default_config_hash: hBHXB7hC05XU7pDYzETt-GUcpFlogK1gkjyAsg0Ym58
id: gin_content
theme: gin
region: content
weight: 0
provider: null
plugin: system_main_block
settings:
id: system_main_block
label: 主页内容
label_display: '0'
provider: system
visibility: { }

View File

@ -0,0 +1,22 @@
uuid: 0253b273-f94c-423e-9039-e7233d633fd2
langcode: zh-hans
status: true
dependencies:
module:
- help
theme:
- gin
_core:
default_config_hash: 8nOAry2oKqJOr0zbrlJ3sZHDFJLIO6j-0vT0K_TYca4
id: gin_help
theme: gin
region: help
weight: 0
provider: null
plugin: help_block
settings:
id: help_block
label: 帮助
label_display: '0'
provider: help
visibility: { }

View File

@ -0,0 +1,20 @@
uuid: 124b1995-e820-4ddc-b66c-bcfae74dd13d
langcode: zh-hans
status: true
dependencies:
theme:
- gin
_core:
default_config_hash: OQ9aJ-4qVwK1x00o9EOYK4eFDjQr_HLpbPiJaPSVZiQ
id: gin_local_actions
theme: gin
region: content
weight: -10
provider: null
plugin: local_actions_block
settings:
id: local_actions_block
label: 主要管理动作
label_display: '0'
provider: core
visibility: { }

View File

@ -0,0 +1,22 @@
uuid: badd2df9-5b70-4705-ba52-e8e4a3acd6ed
langcode: zh-hans
status: true
dependencies:
module:
- system
theme:
- gin
_core:
default_config_hash: WvPhI8OwllG0gE69-F8qL3ai3nd5SbYD6JpmEuZcyok
id: gin_messages
theme: gin
region: highlighted
weight: 0
provider: null
plugin: system_messages_block
settings:
id: system_messages_block
label: 状态消息
label_display: '0'
provider: system
visibility: { }

View File

@ -0,0 +1,20 @@
uuid: 8b5cc9cd-9736-4e83-a463-6a22ee77309a
langcode: zh-hans
status: true
dependencies:
theme:
- gin
_core:
default_config_hash: HLQY2xgby8K3vN_98hiOSasOhm9pdCsH234-s0duJ8Q
id: gin_page_title
theme: gin
region: header
weight: -30
provider: null
plugin: page_title_block
settings:
id: page_title_block
label: 页面标题
label_display: '0'
provider: core
visibility: { }

View File

@ -0,0 +1,22 @@
uuid: 90f3fdba-0123-48c8-8578-aa8e20cbb4c1
langcode: zh-hans
status: true
dependencies:
theme:
- gin
_core:
default_config_hash: Hh01DLj9k7UnNdPpOQXHZHW7GHf2OPNDQyCJF7_R9ac
id: gin_primary_local_tasks
theme: gin
region: header
weight: 0
provider: null
plugin: local_tasks_block
settings:
id: local_tasks_block
label: 主标签
label_display: '0'
provider: core
primary: true
secondary: false
visibility: { }

View File

@ -0,0 +1,22 @@
uuid: 27926fe4-c519-4c64-992d-a0300c5a8080
langcode: zh-hans
status: true
dependencies:
theme:
- gin
_core:
default_config_hash: BCWhood0xXFQYqxFgL1spXdb9KeIuXH1YvTdjIEedDg
id: gin_secondary_local_tasks
theme: gin
region: pre_content
weight: 0
provider: null
plugin: local_tasks_block
settings:
id: local_tasks_block
label: 次标签
label_display: '0'
provider: core
primary: false
secondary: true
visibility: { }

View File

@ -0,0 +1,57 @@
uuid: 0dc4aab9-f4e4-45b0-b086-e387aac9ea48
langcode: en
status: true
dependencies:
content:
- 'block_content:basic:30fc2831-e146-4daa-aabe-9294e9401553'
module:
- block_content
- block_visibility_groups
- hsblock
- system
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-left
classes: ''
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: ''
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: header_info
theme: martis
region: header
weight: -79
provider: null
plugin: 'block_content:30fc2831-e146-4daa-aabe-9294e9401553'
settings:
id: 'block_content:30fc2831-e146-4daa-aabe-9294e9401553'
label: 'Header Info'
label_display: '0'
provider: block_content
status: true
info: ''
view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: ''
request_path:
id: request_path
negate: false
context_mapping: { }
pages: /corporate-01

View File

@ -0,0 +1,53 @@
uuid: 3023e276-d701-4ddf-8e3f-00e211f3eca3
langcode: en
status: true
dependencies:
config:
- block_visibility_groups.block_visibility_group.home_corporate_02
content:
- 'block_content:basic:b0b8d31f-45bf-4897-b5f9-ee647e42d5f3'
module:
- block_content
- block_visibility_groups
- hsblock
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-left
classes: ''
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: ''
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: header_info2
theme: martis
region: header
weight: -78
provider: null
plugin: 'block_content:b0b8d31f-45bf-4897-b5f9-ee647e42d5f3'
settings:
id: 'block_content:b0b8d31f-45bf-4897-b5f9-ee647e42d5f3'
label: 'Header Info 2'
label_display: '0'
provider: block_content
status: true
info: ''
view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: home_corporate_02

View File

@ -0,0 +1,53 @@
uuid: d3507aaa-9771-4d3e-b339-482d0d4afcf2
langcode: en
status: true
dependencies:
config:
- block_visibility_groups.block_visibility_group.home_shop_01
content:
- 'block_content:banner_block:a3992df5-fb03-445a-869a-a6dfe5a54b63'
module:
- block_content
- block_visibility_groups
- hsblock
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: 'fullwidth framewidth'
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-left
classes: ''
block_padding_top: 0px
block_padding_right: ''
block_padding_bottom: 0px
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: home01_banner1
theme: martis
region: content_wide
weight: -70
provider: null
plugin: 'block_content:a3992df5-fb03-445a-869a-a6dfe5a54b63'
settings:
id: 'block_content:a3992df5-fb03-445a-869a-a6dfe5a54b63'
label: 'Home 01 Banner 1'
label_display: '0'
provider: block_content
status: true
info: ''
view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: home_shop_01

View File

@ -0,0 +1,53 @@
uuid: 84c84382-2e6e-49a2-a8b9-295bbf2f67d3
langcode: en
status: true
dependencies:
config:
- block_visibility_groups.block_visibility_group.home_shop_01
content:
- 'block_content:slider:9848243d-b738-4214-b77b-16c936693f06'
module:
- block_content
- block_visibility_groups
- hsblock
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: fullwidth
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-left
classes: ''
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: ''
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: home01_slider
theme: martis
region: content_wide_top
weight: -80
provider: null
plugin: 'block_content:9848243d-b738-4214-b77b-16c936693f06'
settings:
id: 'block_content:9848243d-b738-4214-b77b-16c936693f06'
label: 'Home 01 Slider'
label_display: '0'
provider: block_content
status: true
info: ''
view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: home_shop_01

View File

@ -0,0 +1,53 @@
uuid: a15a29dd-9ac7-457a-bf54-2cfd5d147582
langcode: en
status: true
dependencies:
config:
- block_visibility_groups.block_visibility_group.home_shop_02
content:
- 'block_content:banner_block:fbccd170-b37a-471a-892c-0c49b9be0cef'
module:
- block_content
- block_visibility_groups
- hsblock
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-left
classes: ''
block_padding_top: 0px
block_padding_right: ''
block_padding_bottom: 0px
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: home02_banner1
theme: martis
region: content_wide
weight: -79
provider: null
plugin: 'block_content:fbccd170-b37a-471a-892c-0c49b9be0cef'
settings:
id: 'block_content:fbccd170-b37a-471a-892c-0c49b9be0cef'
label: 'Home 02 Banner 1'
label_display: '0'
provider: block_content
status: true
info: ''
view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: home_shop_02

View File

@ -0,0 +1,53 @@
uuid: 6a25cd91-d23b-46e9-ad8c-1d03618d5cc7
langcode: en
status: true
dependencies:
config:
- block_visibility_groups.block_visibility_group.home_shop_02
content:
- 'block_content:banner_block:47f991b6-5738-49a2-8c87-b2710cd72311'
module:
- block_content
- block_visibility_groups
- hsblock
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-left
classes: ''
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: ''
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: home02_banner2
theme: martis
region: content_widget_second
weight: -18
provider: null
plugin: 'block_content:47f991b6-5738-49a2-8c87-b2710cd72311'
settings:
id: 'block_content:47f991b6-5738-49a2-8c87-b2710cd72311'
label: 'Home 02 Banner 2'
label_display: '0'
provider: block_content
status: true
info: ''
view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: home_shop_02

View File

@ -0,0 +1,53 @@
uuid: 3ad02016-258e-48de-91cd-bcb5a4e3f080
langcode: en
status: true
dependencies:
config:
- block_visibility_groups.block_visibility_group.home_shop_02
content:
- 'block_content:banner_block:8fcce160-cc0f-435f-871d-cff2d9162568'
module:
- block_content
- block_visibility_groups
- hsblock
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-left
classes: ''
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: ''
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: home02_banner3
theme: martis
region: content_widget_third
weight: -20
provider: null
plugin: 'block_content:8fcce160-cc0f-435f-871d-cff2d9162568'
settings:
id: 'block_content:8fcce160-cc0f-435f-871d-cff2d9162568'
label: 'Home 02 Banner 3'
label_display: '0'
provider: block_content
status: true
info: ''
view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: home_shop_02

View File

@ -0,0 +1,53 @@
uuid: f73fe052-11d1-483d-9db7-39feb71e8875
langcode: en
status: true
dependencies:
config:
- block_visibility_groups.block_visibility_group.home_shop_02
content:
- 'block_content:slider:9b0b748b-988a-4bde-952f-25056dced89d'
module:
- block_content
- block_visibility_groups
- hsblock
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-left
classes: ''
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: ''
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: home02_slider
theme: martis
region: content
weight: -71
provider: null
plugin: 'block_content:9b0b748b-988a-4bde-952f-25056dced89d'
settings:
id: 'block_content:9b0b748b-988a-4bde-952f-25056dced89d'
label: 'Home 02 slider'
label_display: '0'
provider: block_content
status: true
info: ''
view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: home_shop_02

View File

@ -0,0 +1,53 @@
uuid: 6a19524d-494e-4f2c-9793-ed417fcc808e
langcode: en
status: true
dependencies:
config:
- block_visibility_groups.block_visibility_group.home_shop_03
content:
- 'block_content:banner_block:6ecca53d-4535-4e74-afe8-904fc70b31bc'
module:
- block_content
- block_visibility_groups
- hsblock
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-left
classes: ''
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: 20px
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: home03_banner1
theme: martis
region: content_wide_top
weight: -68
provider: null
plugin: 'block_content:6ecca53d-4535-4e74-afe8-904fc70b31bc'
settings:
id: 'block_content:6ecca53d-4535-4e74-afe8-904fc70b31bc'
label: 'Home 03 Banner 1'
label_display: '0'
provider: block_content
status: true
info: ''
view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: home_shop_03

View File

@ -0,0 +1,53 @@
uuid: cb45840b-51a1-4171-8616-dfd49218a3c1
langcode: en
status: true
dependencies:
config:
- block_visibility_groups.block_visibility_group.home_shop_03
content:
- 'block_content:banner_block:202998f1-0134-4be9-b385-979c855a788d'
module:
- block_content
- block_visibility_groups
- hsblock
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-left
classes: ''
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: ''
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: home03_banner2
theme: martis
region: sidebar_first
weight: -40
provider: null
plugin: 'block_content:202998f1-0134-4be9-b385-979c855a788d'
settings:
id: 'block_content:202998f1-0134-4be9-b385-979c855a788d'
label: 'Home 03 Banner 2'
label_display: '0'
provider: block_content
status: true
info: ''
view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: home_shop_03

View File

@ -0,0 +1,53 @@
uuid: fe6051bc-80b9-45b1-8a8c-94bf66a2e13d
langcode: en
status: true
dependencies:
config:
- block_visibility_groups.block_visibility_group.home_shop_03
content:
- 'block_content:banner_block:c264a149-4a78-483c-b2b4-6c7a6e5cd107'
module:
- block_content
- block_visibility_groups
- hsblock
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-left
classes: ''
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: ''
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: home03_banner3
theme: martis
region: sidebar_first
weight: -18
provider: null
plugin: 'block_content:c264a149-4a78-483c-b2b4-6c7a6e5cd107'
settings:
id: 'block_content:c264a149-4a78-483c-b2b4-6c7a6e5cd107'
label: 'Home 03 Banner 3'
label_display: '0'
provider: block_content
status: true
info: ''
view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: home_shop_03

View File

@ -0,0 +1,53 @@
uuid: 6b20d477-d3bd-4fde-91e3-dba5dd624689
langcode: en
status: true
dependencies:
config:
- block_visibility_groups.block_visibility_group.home_shop_03
content:
- 'block_content:slider:60fff0d6-c739-4425-92c0-371587964816'
module:
- block_content
- block_visibility_groups
- hsblock
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: fullwidth
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-left
classes: ''
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: ''
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: home03_slider
theme: martis
region: content_wide_top
weight: -79
provider: null
plugin: 'block_content:60fff0d6-c739-4425-92c0-371587964816'
settings:
id: 'block_content:60fff0d6-c739-4425-92c0-371587964816'
label: 'Home 03 slider'
label_display: '0'
provider: block_content
status: true
info: ''
view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: home_shop_03

View File

@ -0,0 +1,53 @@
uuid: e0696728-f18d-4df1-b09b-d4932fba3870
langcode: en
status: true
dependencies:
config:
- block_visibility_groups.block_visibility_group.home_shop_04
content:
- 'block_content:banner_block:bdabe17f-2024-46d2-9848-3f1da33874ce'
module:
- block_content
- block_visibility_groups
- hsblock
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-left
classes: ''
block_padding_top: 0px
block_padding_right: ''
block_padding_bottom: 0px
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: home04_banner1
theme: martis
region: content_wide
weight: -74
provider: null
plugin: 'block_content:bdabe17f-2024-46d2-9848-3f1da33874ce'
settings:
id: 'block_content:bdabe17f-2024-46d2-9848-3f1da33874ce'
label: 'Home 04 Banner 1'
label_display: '0'
provider: block_content
status: true
info: ''
view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: home_shop_04

View File

@ -0,0 +1,53 @@
uuid: 9b200028-2c58-4699-a4c3-af53c289bb18
langcode: en
status: true
dependencies:
config:
- block_visibility_groups.block_visibility_group.home_shop_04
content:
- 'block_content:banner_block:5e0ab6b4-1621-4c84-8f1d-415f69934c0a'
module:
- block_content
- block_visibility_groups
- hsblock
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-left
classes: ''
block_padding_top: 0px
block_padding_right: ''
block_padding_bottom: 0px
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: home04_banner2
theme: martis
region: content_wide
weight: -72
provider: null
plugin: 'block_content:5e0ab6b4-1621-4c84-8f1d-415f69934c0a'
settings:
id: 'block_content:5e0ab6b4-1621-4c84-8f1d-415f69934c0a'
label: 'Home 04 Banner 2'
label_display: '0'
provider: block_content
status: true
info: ''
view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: home_shop_04

View File

@ -0,0 +1,53 @@
uuid: 4577e910-b3a4-4835-9e30-c5b7c976bbf9
langcode: en
status: true
dependencies:
config:
- block_visibility_groups.block_visibility_group.home_shop_04
content:
- 'block_content:slider:08b940c9-3c67-4aeb-8526-951bd3990554'
module:
- block_content
- block_visibility_groups
- hsblock
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-left
classes: ''
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: ''
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: home04_slider
theme: martis
region: content
weight: -70
provider: null
plugin: 'block_content:08b940c9-3c67-4aeb-8526-951bd3990554'
settings:
id: 'block_content:08b940c9-3c67-4aeb-8526-951bd3990554'
label: 'Home 04 slider'
label_display: '0'
provider: block_content
status: true
info: ''
view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: home_shop_04

View File

@ -0,0 +1,53 @@
uuid: cb62acb6-4570-4a6a-9c7c-c8799b8a165f
langcode: en
status: true
dependencies:
config:
- block_visibility_groups.block_visibility_group.home_corporate_01
content:
- 'block_content:feature_block:e30dc42b-5a20-4f8c-8e9c-e9aa4e704910'
module:
- block_content
- block_visibility_groups
- hsblock
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: 'We are a design agency with a difference'
block_title_style: block-title-2
block_title_align: block-title-left
classes: ''
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: 0px
block_padding_left: ''
block_text_color: ''
block_bg_color: '#fbfbfb'
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: home05_about
theme: martis
region: content_wide
weight: -60
provider: null
plugin: 'block_content:e30dc42b-5a20-4f8c-8e9c-e9aa4e704910'
settings:
id: 'block_content:e30dc42b-5a20-4f8c-8e9c-e9aa4e704910'
label: 'We help businesses succeed beyond limitation through strategic approach.'
label_display: visible
provider: block_content
status: true
info: ''
view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: home_corporate_01

View File

@ -0,0 +1,53 @@
uuid: 997276ff-c300-4363-858d-e130b637e8a6
langcode: en
status: true
dependencies:
config:
- block_visibility_groups.block_visibility_group.home_corporate_01
content:
- 'block_content:slider:2b18b1b5-cc98-4f93-9795-3536422a007e'
module:
- block_content
- block_visibility_groups
- hsblock
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: fullwidth
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-left
classes: ''
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: ''
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: home05_slider
theme: martis
region: content_wide_top
weight: -78
provider: null
plugin: 'block_content:2b18b1b5-cc98-4f93-9795-3536422a007e'
settings:
id: 'block_content:2b18b1b5-cc98-4f93-9795-3536422a007e'
label: 'Home 05 slider'
label_display: '0'
provider: block_content
status: true
info: ''
view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: home_corporate_01

View File

@ -0,0 +1,53 @@
uuid: 18022838-504f-4c42-904d-c6c321d31c43
langcode: en
status: true
dependencies:
config:
- block_visibility_groups.block_visibility_group.home_corporate_02
content:
- 'block_content:slider:160f4bb0-f8ec-4d78-85db-930d03426d60'
module:
- block_content
- block_visibility_groups
- hsblock
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: fullwidth
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-left
classes: ''
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: ''
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: home06_slider
theme: martis
region: content_wide_top
weight: -77
provider: null
plugin: 'block_content:160f4bb0-f8ec-4d78-85db-930d03426d60'
settings:
id: 'block_content:160f4bb0-f8ec-4d78-85db-930d03426d60'
label: 'Home 06 slider'
label_display: '0'
provider: block_content
status: true
info: ''
view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: home_corporate_02

View File

@ -0,0 +1,53 @@
uuid: 231532b2-08b7-4c32-b2a5-6a027e68eb19
langcode: en
status: true
dependencies:
config:
- block_visibility_groups.block_visibility_group.home_corporate_03
content:
- 'block_content:basic:3d07c4b4-06e4-4add-a853-f8b2391e1351'
module:
- block_content
- block_visibility_groups
- hsblock
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-left
classes: ''
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: ''
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: home07_about
theme: martis
region: content_wide
weight: -40
provider: null
plugin: 'block_content:3d07c4b4-06e4-4add-a853-f8b2391e1351'
settings:
id: 'block_content:3d07c4b4-06e4-4add-a853-f8b2391e1351'
label: 'Home 07 About Intro'
label_display: '0'
provider: block_content
status: true
info: ''
view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: home_corporate_03

View File

@ -0,0 +1,53 @@
uuid: b43ff743-c967-480a-9752-35a56cd5120f
langcode: en
status: true
dependencies:
config:
- block_visibility_groups.block_visibility_group.home_corporate_03
content:
- 'block_content:feature_block:c97022a0-d97e-4ed8-acef-4ffc038979c6'
module:
- block_content
- block_visibility_groups
- hsblock
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: 'Our core responbility'
block_title_style: block-title-2
block_title_align: block-title-left
classes: ''
block_padding_top: 70px
block_padding_right: ''
block_padding_bottom: ''
block_padding_left: ''
block_text_color: ''
block_bg_color: '#fcfcfc'
block_bg_image_path: /themes/custom/martis/assets/images/bg/bg2.png
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: home07_feature_block
theme: martis
region: content_wide
weight: -38
provider: null
plugin: 'block_content:c97022a0-d97e-4ed8-acef-4ffc038979c6'
settings:
id: 'block_content:c97022a0-d97e-4ed8-acef-4ffc038979c6'
label: 'Connecting businessess with the right customers is our most important responsibility.'
label_display: visible
provider: block_content
status: true
info: ''
view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: home_corporate_03

View File

@ -0,0 +1,53 @@
uuid: 93133069-97fe-4549-9296-48861895d124
langcode: en
status: true
dependencies:
config:
- block_visibility_groups.block_visibility_group.home_corporate_03
content:
- 'block_content:feature_block:adeef91f-8696-4532-8657-21daee93fe1c'
module:
- block_content
- block_visibility_groups
- hsblock
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: norm-width
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-left
classes: ''
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: ''
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: /themes/custom/martis/assets/images/bg/bg3.png
block_bg_repeat: no-repeat
block_bg_position: 'right bottom'
block_bg_size: contain
block_parallax_bg: parallax-bg
id: home07_feature_block2
theme: martis
region: content_wide
weight: -36
provider: null
plugin: 'block_content:adeef91f-8696-4532-8657-21daee93fe1c'
settings:
id: 'block_content:adeef91f-8696-4532-8657-21daee93fe1c'
label: 'Our area of expertise is so broad to accommodate all your business needs.'
label_display: visible
provider: block_content
status: true
info: ''
view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: home_corporate_03

View File

@ -0,0 +1,53 @@
uuid: e6e4ef0a-22a6-4d27-929e-e3378817d88a
langcode: en
status: true
dependencies:
config:
- block_visibility_groups.block_visibility_group.home_corporate_03
content:
- 'block_content:slider:c25e9d1f-b955-45a8-8c6b-f9b9bc5af786'
module:
- block_content
- block_visibility_groups
- hsblock
theme:
- martis
third_party_settings:
hsblock:
id: ''
block_layout: fullwidth
block_subtitle: ''
block_title_style: block-title-1
block_title_align: block-title-left
classes: ''
block_padding_top: ''
block_padding_right: ''
block_padding_bottom: ''
block_padding_left: ''
block_text_color: ''
block_bg_color: ''
block_bg_image_path: ''
block_bg_repeat: ''
block_bg_position: ''
block_bg_size: ''
block_parallax_bg: ''
id: home07_slider
theme: martis
region: content_wide_top
weight: -76
provider: null
plugin: 'block_content:c25e9d1f-b955-45a8-8c6b-f9b9bc5af786'
settings:
id: 'block_content:c25e9d1f-b955-45a8-8c6b-f9b9bc5af786'
label: 'Home 07 slider'
label_display: '0'
provider: block_content
status: true
info: ''
view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: home_corporate_03

Some files were not shown because too many files have changed in this diff Show More