Merge drupal-commerce-kickstart/main
This commit is contained in:
commit
f909898feb
561 changed files with 55407 additions and 0 deletions
2
drupal-commerce-kickstart/.dockerignore
Normal file
2
drupal-commerce-kickstart/.dockerignore
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
/README.md
|
||||
/.github/
|
||||
18
drupal-commerce-kickstart/.env.example
Normal file
18
drupal-commerce-kickstart/.env.example
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
# Do not edit this file. It is automatically generated by https://www.oliverdavies.uk/build-configs.
|
||||
|
||||
export DOCKER_UID=1000
|
||||
|
||||
export COMPOSE_PROJECT_NAME=docker-example-drupal-commerce-kickstart
|
||||
export COMPOSE_PROFILES=web,php,database
|
||||
|
||||
export DOCKER_WEB_VOLUME=.:/app
|
||||
|
||||
export DRUSH_OPTIONS_URI="https://${COMPOSE_PROJECT_NAME}.docker.localhost"
|
||||
|
||||
export MYSQL_DATABASE=app
|
||||
export MYSQL_PASSWORD=app
|
||||
export MYSQL_USER=app
|
||||
|
||||
export DB_NAME="$MYSQL_DATABASE"
|
||||
export DB_PASSWORD="$MYSQL_PASSWORD"
|
||||
export DB_USER="$MYSQL_USER"
|
||||
9
drupal-commerce-kickstart/.githooks/pre-push
Executable file
9
drupal-commerce-kickstart/.githooks/pre-push
Executable file
|
|
@ -0,0 +1,9 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Do not edit this file. It is automatically generated by https://www.oliverdavies.uk/build-configs.
|
||||
|
||||
set -o errexit
|
||||
|
||||
export TTY="-T"
|
||||
|
||||
./run test:commit
|
||||
27
drupal-commerce-kickstart/.githooks/prepare-commit-msg
Executable file
27
drupal-commerce-kickstart/.githooks/prepare-commit-msg
Executable file
|
|
@ -0,0 +1,27 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Do not edit this file. It is automatically generated by https://www.oliverdavies.uk/build-configs.
|
||||
|
||||
# Load the issue ID from an `.issue-id` file within the project and replace the
|
||||
# `ISSUE_ID` placeholder within a Git commit message.
|
||||
#
|
||||
# For example, running `echo "OD-123" > .issue-id` will add `Refs: OD-123` to
|
||||
# the commit message.
|
||||
#
|
||||
# This also works with multiple issue IDs in the same string, e.g.
|
||||
# "OD-123 OD-456", or IDs on multiple lines.
|
||||
|
||||
set -o errexit
|
||||
set -o nounset
|
||||
set -o pipefail
|
||||
|
||||
PROJECT_DIR=$(git rev-parse --show-toplevel)
|
||||
ISSUE_FILE="$PROJECT_DIR/.issue-id"
|
||||
|
||||
if [ -f "${ISSUE_FILE}" ]; then
|
||||
ISSUE_IDS=$(cat "${ISSUE_FILE}" | tr '\n' ',' | tr ' ' ',' | sed 's/,$//' | sed 's/,/, /g')
|
||||
|
||||
if [ -n "${ISSUE_IDS}" ]; then
|
||||
sed -i.bak "s/# Refs:/Refs: $ISSUE_IDS/" "$1"
|
||||
fi
|
||||
fi
|
||||
25
drupal-commerce-kickstart/.github/workflows/ci.yml
vendored
Normal file
25
drupal-commerce-kickstart/.github/workflows/ci.yml
vendored
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
name: CI
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
workflow_dispatch:
|
||||
|
||||
env:
|
||||
COMPOSE_DOCKER_CLI_BUILD: 1
|
||||
DOCKER_BUILDKIT: 1
|
||||
DOCKER_UID: 1001
|
||||
|
||||
jobs:
|
||||
build_and_test:
|
||||
name: Build and test
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout the code
|
||||
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.4
|
||||
|
||||
- name: Build and test
|
||||
run: |
|
||||
./run ci:test
|
||||
42
drupal-commerce-kickstart/.gitignore
vendored
Normal file
42
drupal-commerce-kickstart/.gitignore
vendored
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
# Do not edit this file. It is automatically generated by https://www.oliverdavies.uk/build-configs.
|
||||
|
||||
.editorconfig
|
||||
.env
|
||||
.gitattributes
|
||||
.phpunit.result.cache
|
||||
vendor/
|
||||
web/.csslintrc
|
||||
web/.eslintignore
|
||||
web/.eslintrc.json
|
||||
web/.ht.router.php
|
||||
web/.htaccess
|
||||
web/INSTALL.txt
|
||||
web/README.md
|
||||
web/autoload.php
|
||||
web/core/
|
||||
web/example.gitignore
|
||||
web/index.php
|
||||
web/modules/README.txt
|
||||
web/modules/contrib/
|
||||
web/profiles/README.txt
|
||||
web/robots.txt
|
||||
web/sites/*/files/
|
||||
web/sites/*/private/
|
||||
web/sites/*/services*.yml
|
||||
web/sites/*/settings*.php
|
||||
web/sites/README.txt
|
||||
web/sites/default/default.services.yml
|
||||
web/sites/default/default.settings.php
|
||||
web/sites/development.services.yml
|
||||
web/sites/example.settings.local.php
|
||||
web/sites/example.sites.php
|
||||
web/sites/simpletest/
|
||||
web/themes/README.txt
|
||||
web/themes/contrib/
|
||||
web/update.php
|
||||
web/web.config
|
||||
|
||||
# Docker.
|
||||
.env
|
||||
docker-compose.override.yaml
|
||||
|
||||
2
drupal-commerce-kickstart/.hadolint.yaml
Normal file
2
drupal-commerce-kickstart/.hadolint.yaml
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
ignore:
|
||||
- DL3059
|
||||
67
drupal-commerce-kickstart/Dockerfile
Normal file
67
drupal-commerce-kickstart/Dockerfile
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
# Do not edit this file. It is automatically generated by https://www.oliverdavies.uk/build-configs.
|
||||
|
||||
FROM php:8.1-fpm-bullseye AS base
|
||||
|
||||
COPY --from=composer:2 /usr/bin/composer /usr/bin/composer
|
||||
RUN which composer && composer -V
|
||||
|
||||
ARG DOCKER_UID=1000
|
||||
ENV DOCKER_UID="${DOCKER_UID}"
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
RUN adduser --disabled-password --uid "${DOCKER_UID}" app \
|
||||
&& chown app:app -R /app
|
||||
|
||||
USER app
|
||||
|
||||
ENV PATH="${PATH}:/app/bin:/app/vendor/bin"
|
||||
|
||||
COPY --chown=app:app composer.* ./
|
||||
|
||||
################################################################################
|
||||
|
||||
FROM base AS build
|
||||
|
||||
USER root
|
||||
|
||||
|
||||
RUN apt-get update -yqq \
|
||||
&& apt-get install -yqq --no-install-recommends \
|
||||
git libpng-dev libjpeg-dev libzip-dev mariadb-client unzip \
|
||||
&& rm -rf /var/lib/apt/lists/* /usr/share/doc /usr/share/man \
|
||||
&& apt-get clean
|
||||
|
||||
RUN docker-php-ext-configure gd --with-jpeg
|
||||
|
||||
RUN docker-php-ext-install bcmath gd opcache pdo_mysql zip
|
||||
|
||||
COPY --chown=app:app phpunit.xml* ./
|
||||
|
||||
COPY --chown=app:app config config
|
||||
COPY --chown=app:app patches patches
|
||||
COPY --chown=app:app scripts scripts
|
||||
|
||||
|
||||
USER app
|
||||
|
||||
RUN composer validate
|
||||
RUN composer install
|
||||
|
||||
COPY --chown=app:app tools/docker/images/php/root /
|
||||
|
||||
ENTRYPOINT ["/usr/local/bin/docker-entrypoint-php"]
|
||||
CMD ["php-fpm"]
|
||||
|
||||
|
||||
|
||||
|
||||
################################################################################
|
||||
|
||||
FROM nginx:1 as web
|
||||
|
||||
EXPOSE 8080
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY tools/docker/images/web/root /
|
||||
339
drupal-commerce-kickstart/LICENSE
Normal file
339
drupal-commerce-kickstart/LICENSE
Normal file
|
|
@ -0,0 +1,339 @@
|
|||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 2, June 1991
|
||||
|
||||
Copyright (C) 1989, 1991 Free Software Foundation, Inc., <http://fsf.org/>
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The licenses for most software are designed to take away your
|
||||
freedom to share and change it. By contrast, the GNU General Public
|
||||
License is intended to guarantee your freedom to share and change free
|
||||
software--to make sure the software is free for all its users. This
|
||||
General Public License applies to most of the Free Software
|
||||
Foundation's software and to any other program whose authors commit to
|
||||
using it. (Some other Free Software Foundation software is covered by
|
||||
the GNU Lesser General Public License instead.) You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
this service if you wish), that you receive source code or can get it
|
||||
if you want it, that you can change the software or use pieces of it
|
||||
in new free programs; and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to make restrictions that forbid
|
||||
anyone to deny you these rights or to ask you to surrender the rights.
|
||||
These restrictions translate to certain responsibilities for you if you
|
||||
distribute copies of the software, or if you modify it.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must give the recipients all the rights that
|
||||
you have. You must make sure that they, too, receive or can get the
|
||||
source code. And you must show them these terms so they know their
|
||||
rights.
|
||||
|
||||
We protect your rights with two steps: (1) copyright the software, and
|
||||
(2) offer you this license which gives you legal permission to copy,
|
||||
distribute and/or modify the software.
|
||||
|
||||
Also, for each author's protection and ours, we want to make certain
|
||||
that everyone understands that there is no warranty for this free
|
||||
software. If the software is modified by someone else and passed on, we
|
||||
want its recipients to know that what they have is not the original, so
|
||||
that any problems introduced by others will not reflect on the original
|
||||
authors' reputations.
|
||||
|
||||
Finally, any free program is threatened constantly by software
|
||||
patents. We wish to avoid the danger that redistributors of a free
|
||||
program will individually obtain patent licenses, in effect making the
|
||||
program proprietary. To prevent this, we have made it clear that any
|
||||
patent must be licensed for everyone's free use or not licensed at all.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||
|
||||
0. This License applies to any program or other work which contains
|
||||
a notice placed by the copyright holder saying it may be distributed
|
||||
under the terms of this General Public License. The "Program", below,
|
||||
refers to any such program or work, and a "work based on the Program"
|
||||
means either the Program or any derivative work under copyright law:
|
||||
that is to say, a work containing the Program or a portion of it,
|
||||
either verbatim or with modifications and/or translated into another
|
||||
language. (Hereinafter, translation is included without limitation in
|
||||
the term "modification".) Each licensee is addressed as "you".
|
||||
|
||||
Activities other than copying, distribution and modification are not
|
||||
covered by this License; they are outside its scope. The act of
|
||||
running the Program is not restricted, and the output from the Program
|
||||
is covered only if its contents constitute a work based on the
|
||||
Program (independent of having been made by running the Program).
|
||||
Whether that is true depends on what the Program does.
|
||||
|
||||
1. You may copy and distribute verbatim copies of the Program's
|
||||
source code as you receive it, in any medium, provided that you
|
||||
conspicuously and appropriately publish on each copy an appropriate
|
||||
copyright notice and disclaimer of warranty; keep intact all the
|
||||
notices that refer to this License and to the absence of any warranty;
|
||||
and give any other recipients of the Program a copy of this License
|
||||
along with the Program.
|
||||
|
||||
You may charge a fee for the physical act of transferring a copy, and
|
||||
you may at your option offer warranty protection in exchange for a fee.
|
||||
|
||||
2. You may modify your copy or copies of the Program or any portion
|
||||
of it, thus forming a work based on the Program, and copy and
|
||||
distribute such modifications or work under the terms of Section 1
|
||||
above, provided that you also meet all of these conditions:
|
||||
|
||||
a) You must cause the modified files to carry prominent notices
|
||||
stating that you changed the files and the date of any change.
|
||||
|
||||
b) You must cause any work that you distribute or publish, that in
|
||||
whole or in part contains or is derived from the Program or any
|
||||
part thereof, to be licensed as a whole at no charge to all third
|
||||
parties under the terms of this License.
|
||||
|
||||
c) If the modified program normally reads commands interactively
|
||||
when run, you must cause it, when started running for such
|
||||
interactive use in the most ordinary way, to print or display an
|
||||
announcement including an appropriate copyright notice and a
|
||||
notice that there is no warranty (or else, saying that you provide
|
||||
a warranty) and that users may redistribute the program under
|
||||
these conditions, and telling the user how to view a copy of this
|
||||
License. (Exception: if the Program itself is interactive but
|
||||
does not normally print such an announcement, your work based on
|
||||
the Program is not required to print an announcement.)
|
||||
|
||||
These requirements apply to the modified work as a whole. If
|
||||
identifiable sections of that work are not derived from the Program,
|
||||
and can be reasonably considered independent and separate works in
|
||||
themselves, then this License, and its terms, do not apply to those
|
||||
sections when you distribute them as separate works. But when you
|
||||
distribute the same sections as part of a whole which is a work based
|
||||
on the Program, the distribution of the whole must be on the terms of
|
||||
this License, whose permissions for other licensees extend to the
|
||||
entire whole, and thus to each and every part regardless of who wrote it.
|
||||
|
||||
Thus, it is not the intent of this section to claim rights or contest
|
||||
your rights to work written entirely by you; rather, the intent is to
|
||||
exercise the right to control the distribution of derivative or
|
||||
collective works based on the Program.
|
||||
|
||||
In addition, mere aggregation of another work not based on the Program
|
||||
with the Program (or with a work based on the Program) on a volume of
|
||||
a storage or distribution medium does not bring the other work under
|
||||
the scope of this License.
|
||||
|
||||
3. You may copy and distribute the Program (or a work based on it,
|
||||
under Section 2) in object code or executable form under the terms of
|
||||
Sections 1 and 2 above provided that you also do one of the following:
|
||||
|
||||
a) Accompany it with the complete corresponding machine-readable
|
||||
source code, which must be distributed under the terms of Sections
|
||||
1 and 2 above on a medium customarily used for software interchange; or,
|
||||
|
||||
b) Accompany it with a written offer, valid for at least three
|
||||
years, to give any third party, for a charge no more than your
|
||||
cost of physically performing source distribution, a complete
|
||||
machine-readable copy of the corresponding source code, to be
|
||||
distributed under the terms of Sections 1 and 2 above on a medium
|
||||
customarily used for software interchange; or,
|
||||
|
||||
c) Accompany it with the information you received as to the offer
|
||||
to distribute corresponding source code. (This alternative is
|
||||
allowed only for noncommercial distribution and only if you
|
||||
received the program in object code or executable form with such
|
||||
an offer, in accord with Subsection b above.)
|
||||
|
||||
The source code for a work means the preferred form of the work for
|
||||
making modifications to it. For an executable work, complete source
|
||||
code means all the source code for all modules it contains, plus any
|
||||
associated interface definition files, plus the scripts used to
|
||||
control compilation and installation of the executable. However, as a
|
||||
special exception, the source code distributed need not include
|
||||
anything that is normally distributed (in either source or binary
|
||||
form) with the major components (compiler, kernel, and so on) of the
|
||||
operating system on which the executable runs, unless that component
|
||||
itself accompanies the executable.
|
||||
|
||||
If distribution of executable or object code is made by offering
|
||||
access to copy from a designated place, then offering equivalent
|
||||
access to copy the source code from the same place counts as
|
||||
distribution of the source code, even though third parties are not
|
||||
compelled to copy the source along with the object code.
|
||||
|
||||
4. You may not copy, modify, sublicense, or distribute the Program
|
||||
except as expressly provided under this License. Any attempt
|
||||
otherwise to copy, modify, sublicense or distribute the Program is
|
||||
void, and will automatically terminate your rights under this License.
|
||||
However, parties who have received copies, or rights, from you under
|
||||
this License will not have their licenses terminated so long as such
|
||||
parties remain in full compliance.
|
||||
|
||||
5. You are not required to accept this License, since you have not
|
||||
signed it. However, nothing else grants you permission to modify or
|
||||
distribute the Program or its derivative works. These actions are
|
||||
prohibited by law if you do not accept this License. Therefore, by
|
||||
modifying or distributing the Program (or any work based on the
|
||||
Program), you indicate your acceptance of this License to do so, and
|
||||
all its terms and conditions for copying, distributing or modifying
|
||||
the Program or works based on it.
|
||||
|
||||
6. Each time you redistribute the Program (or any work based on the
|
||||
Program), the recipient automatically receives a license from the
|
||||
original licensor to copy, distribute or modify the Program subject to
|
||||
these terms and conditions. You may not impose any further
|
||||
restrictions on the recipients' exercise of the rights granted herein.
|
||||
You are not responsible for enforcing compliance by third parties to
|
||||
this License.
|
||||
|
||||
7. If, as a consequence of a court judgment or allegation of patent
|
||||
infringement or for any other reason (not limited to patent issues),
|
||||
conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot
|
||||
distribute so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you
|
||||
may not distribute the Program at all. For example, if a patent
|
||||
license would not permit royalty-free redistribution of the Program by
|
||||
all those who receive copies directly or indirectly through you, then
|
||||
the only way you could satisfy both it and this License would be to
|
||||
refrain entirely from distribution of the Program.
|
||||
|
||||
If any portion of this section is held invalid or unenforceable under
|
||||
any particular circumstance, the balance of the section is intended to
|
||||
apply and the section as a whole is intended to apply in other
|
||||
circumstances.
|
||||
|
||||
It is not the purpose of this section to induce you to infringe any
|
||||
patents or other property right claims or to contest validity of any
|
||||
such claims; this section has the sole purpose of protecting the
|
||||
integrity of the free software distribution system, which is
|
||||
implemented by public license practices. Many people have made
|
||||
generous contributions to the wide range of software distributed
|
||||
through that system in reliance on consistent application of that
|
||||
system; it is up to the author/donor to decide if he or she is willing
|
||||
to distribute software through any other system and a licensee cannot
|
||||
impose that choice.
|
||||
|
||||
This section is intended to make thoroughly clear what is believed to
|
||||
be a consequence of the rest of this License.
|
||||
|
||||
8. If the distribution and/or use of the Program is restricted in
|
||||
certain countries either by patents or by copyrighted interfaces, the
|
||||
original copyright holder who places the Program under this License
|
||||
may add an explicit geographical distribution limitation excluding
|
||||
those countries, so that distribution is permitted only in or among
|
||||
countries not thus excluded. In such case, this License incorporates
|
||||
the limitation as if written in the body of this License.
|
||||
|
||||
9. The Free Software Foundation may publish revised and/or new versions
|
||||
of the General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the Program
|
||||
specifies a version number of this License which applies to it and "any
|
||||
later version", you have the option of following the terms and conditions
|
||||
either of that version or of any later version published by the Free
|
||||
Software Foundation. If the Program does not specify a version number of
|
||||
this License, you may choose any version ever published by the Free Software
|
||||
Foundation.
|
||||
|
||||
10. If you wish to incorporate parts of the Program into other free
|
||||
programs whose distribution conditions are different, write to the author
|
||||
to ask for permission. For software which is copyrighted by the Free
|
||||
Software Foundation, write to the Free Software Foundation; we sometimes
|
||||
make exceptions for this. Our decision will be guided by the two goals
|
||||
of preserving the free status of all derivatives of our free software and
|
||||
of promoting the sharing and reuse of software generally.
|
||||
|
||||
NO WARRANTY
|
||||
|
||||
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
||||
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
||||
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
||||
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
||||
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
||||
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
||||
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
||||
REPAIR OR CORRECTION.
|
||||
|
||||
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
||||
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
||||
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
||||
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
||||
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
||||
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
||||
POSSIBILITY OF SUCH DAMAGES.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
convey the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
{description}
|
||||
Copyright (C) {year} {fullname}
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along
|
||||
with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program is interactive, make it output a short notice like this
|
||||
when it starts in an interactive mode:
|
||||
|
||||
Gnomovision version 69, Copyright (C) year name of author
|
||||
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, the commands you use may
|
||||
be called something other than `show w' and `show c'; they could even be
|
||||
mouse-clicks or menu items--whatever suits your program.
|
||||
|
||||
You should also get your employer (if you work as a programmer) or your
|
||||
school, if any, to sign a "copyright disclaimer" for the program, if
|
||||
necessary. Here is a sample; alter the names:
|
||||
|
||||
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
|
||||
`Gnomovision' (which makes passes at compilers) written by James Hacker.
|
||||
|
||||
{signature of Ty Coon}, 1 April 1989
|
||||
Ty Coon, President of Vice
|
||||
|
||||
This General Public License does not permit incorporating your program into
|
||||
proprietary programs. If your program is a subroutine library, you may
|
||||
consider it more useful to permit linking proprietary applications with the
|
||||
library. If this is what you want to do, use the GNU Lesser General
|
||||
Public License instead of this License.
|
||||
1
drupal-commerce-kickstart/README.md
Normal file
1
drupal-commerce-kickstart/README.md
Normal file
|
|
@ -0,0 +1 @@
|
|||
# docker-example-drupal-commerce-kickstart
|
||||
50
drupal-commerce-kickstart/build.yaml
Normal file
50
drupal-commerce-kickstart/build.yaml
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
name: docker-example-drupal-commerce-kickstart
|
||||
language: php
|
||||
type: drupal
|
||||
|
||||
web:
|
||||
type: nginx
|
||||
|
||||
database:
|
||||
type: mariadb
|
||||
version: 10
|
||||
|
||||
php:
|
||||
version: 8.1-fpm-bullseye
|
||||
phpcs: false
|
||||
phpstan: false
|
||||
phpunit: false
|
||||
|
||||
drupal:
|
||||
docroot: web
|
||||
|
||||
docker-compose:
|
||||
services:
|
||||
- database
|
||||
- php
|
||||
- web
|
||||
|
||||
dockerfile:
|
||||
stages:
|
||||
build:
|
||||
extra_directories:
|
||||
- config
|
||||
- patches
|
||||
- scripts
|
||||
commands:
|
||||
- composer validate
|
||||
- composer install
|
||||
extensions:
|
||||
install:
|
||||
- bcmath
|
||||
|
||||
git:
|
||||
ignore:
|
||||
- /bin/
|
||||
- /libraries/
|
||||
- /web/profiles/contrib/
|
||||
|
||||
experimental:
|
||||
createGitHubActionsConfiguration: true
|
||||
runGitHooksBeforePush: true
|
||||
useNewDatabaseCredentials: true
|
||||
185
drupal-commerce-kickstart/composer.json
Normal file
185
drupal-commerce-kickstart/composer.json
Normal file
|
|
@ -0,0 +1,185 @@
|
|||
{
|
||||
"name": "centarro/commerce-kickstart-project",
|
||||
"description": "Centarro Commerce Kickstart 3.x project template",
|
||||
"type": "project",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Centarro",
|
||||
"role": "info@centarro.io"
|
||||
}
|
||||
],
|
||||
"repositories": {
|
||||
"commerce_demo": {
|
||||
"type": "vcs",
|
||||
"url": "https://git.drupalcode.org/project/commerce_demo.git"
|
||||
},
|
||||
"jquery-ui-touch-punch": {
|
||||
"type": "package",
|
||||
"package": {
|
||||
"name": "furf/jquery-ui-touch-punch",
|
||||
"version": "0.2.3",
|
||||
"type": "drupal-library",
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://github.com/furf/jquery-ui-touch-punch/archive/4bc009145202d9c7483ba85f3a236a8f3470354d.zip"
|
||||
}
|
||||
}
|
||||
},
|
||||
"select2": {
|
||||
"type": "package",
|
||||
"package": {
|
||||
"name": "select2/select2",
|
||||
"version": "4.1.0-rc.0",
|
||||
"type": "drupal-library",
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://github.com/select2/select2/archive/refs/tags/4.1.0-rc.0.zip"
|
||||
}
|
||||
}
|
||||
},
|
||||
"drupal": {
|
||||
"type": "composer",
|
||||
"url": "https://packages.drupal.org/8"
|
||||
}
|
||||
},
|
||||
"config": {
|
||||
"bin-dir": "bin",
|
||||
"sort-packages": true,
|
||||
"allow-plugins": {
|
||||
"composer/installers": true,
|
||||
"dealerdirect/phpcodesniffer-composer-installer": true,
|
||||
"cweagans/composer-patches": true,
|
||||
"drupal/core-composer-scaffold": true,
|
||||
"drupal/core-project-message": true,
|
||||
"oomphinc/composer-installers-extender": true,
|
||||
"phpstan/extension-installer": true,
|
||||
"zaporylie/composer-drupal-optimizations": true
|
||||
}
|
||||
},
|
||||
"require": {
|
||||
"php": ">=8.1",
|
||||
"ext-curl": "*",
|
||||
"centarro/certified-projects": "^1.0",
|
||||
"centarro/commerce_kickstart": "^3.0",
|
||||
"composer/installers": "^2.0",
|
||||
"cweagans/composer-patches": "^1.7",
|
||||
"drupal/commerce_demo": "3.0.x-dev",
|
||||
"drupal/core-composer-scaffold": "^10",
|
||||
"drupal/core-project-message": "^10",
|
||||
"drupal/core-recommended": "^10",
|
||||
"drupal/default_content": "^2",
|
||||
"drush/drush": "^11.4",
|
||||
"vlucas/phpdotenv": "^5.1",
|
||||
"webflo/drupal-finder": "^1.2",
|
||||
"webmozart/path-util": "^2.3"
|
||||
},
|
||||
"require-dev": {
|
||||
"drupal/core-dev": "^10",
|
||||
"zaporylie/composer-drupal-optimizations": "^1.2"
|
||||
},
|
||||
"conflict": {
|
||||
"drupal/drupal": "*"
|
||||
},
|
||||
"minimum-stability": "dev",
|
||||
"prefer-stable": true,
|
||||
"autoload": {
|
||||
"classmap": [
|
||||
"scripts/composer/ScriptHandler.php"
|
||||
],
|
||||
"files": ["load.environment.php"]
|
||||
},
|
||||
"scripts": {
|
||||
"drupal-scaffold": "DrupalComposer\\DrupalScaffold\\Plugin::scaffold",
|
||||
"pre-install-cmd": [
|
||||
"DrupalProject\\composer\\ScriptHandler::checkComposerVersion"
|
||||
],
|
||||
"pre-update-cmd": [
|
||||
"DrupalProject\\composer\\ScriptHandler::checkComposerVersion"
|
||||
],
|
||||
"post-install-cmd": [
|
||||
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles"
|
||||
],
|
||||
"post-update-cmd": [
|
||||
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles"
|
||||
]
|
||||
},
|
||||
"extra": {
|
||||
"composer-exit-on-patch-failure": true,
|
||||
"patches": {
|
||||
"drupal/default_content": {
|
||||
"#3160146 Add a Normalizer and Denormalizer to support Layout Builder": "patches/default_content/3160146-layout-builder.patch"
|
||||
}
|
||||
},
|
||||
"patchLevel": {
|
||||
"drupal/core": "-p2",
|
||||
"drupal/default_content": "-p1"
|
||||
},
|
||||
"drupal-scaffold": {
|
||||
"locations": {
|
||||
"web-root": "web/"
|
||||
},
|
||||
"overwrite": true,
|
||||
"file-mapping": {
|
||||
"[web-root]/libraries/jquery-ui-touch-punch/jquery.ui.touch-punch.min.js": "libraries/jquery-ui-touch-punch/jquery.ui.touch-punch.min.js",
|
||||
"[web-root]/libraries/select2/dist/js/select2.min.js": "libraries/select2/dist/js/select2.min.js",
|
||||
"[web-root]/libraries/select2/dist/css/select2.min.css": "libraries/select2/dist/css/select2.min.css"
|
||||
}
|
||||
},
|
||||
"installer-paths": {
|
||||
"web/core": ["type:drupal-core"],
|
||||
"libraries/{$name}": [
|
||||
"furf/jquery-ui-touch-punch",
|
||||
"select2/select2"
|
||||
],
|
||||
"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"
|
||||
]
|
||||
},
|
||||
"drupal-core-project-message": {
|
||||
"include-keys": ["homepage", "support"],
|
||||
"post-create-project-cmd-message": [
|
||||
"<bg=magenta;fg=white> </>",
|
||||
"<bg=magenta;fg=white> Congratulations, you installed Commerce Kickstart! </>",
|
||||
"<bg=magenta;fg=white> </>",
|
||||
"",
|
||||
"<bg=yellow;fg=black>Next steps</>:",
|
||||
|
||||
" * Install the site: https://www.drupal.org/docs/installing-drupal",
|
||||
" * Read the Drupal Commerce docs: https://docs.drupalcommerce.org/commerce2",
|
||||
" * Get support: https://drupal.stackexchange.com/",
|
||||
" * 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"
|
||||
]
|
||||
},
|
||||
"violinist": {
|
||||
"automerge": 1,
|
||||
"bundled_packages": {
|
||||
"drupal/core-recommended": [
|
||||
"drupal/core-composer-scaffold",
|
||||
"drupal/core-dev",
|
||||
"drupal/core-project-message"
|
||||
]
|
||||
},
|
||||
"blocklist": [
|
||||
"drupal/core-composer-scaffold",
|
||||
"drupal/core-dev",
|
||||
"drupal/core-project-message"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
16342
drupal-commerce-kickstart/composer.lock
generated
Normal file
16342
drupal-commerce-kickstart/composer.lock
generated
Normal file
File diff suppressed because it is too large
Load diff
0
drupal-commerce-kickstart/config/splits/ddev/.gitkeep
Normal file
0
drupal-commerce-kickstart/config/splits/ddev/.gitkeep
Normal file
24
drupal-commerce-kickstart/config/splits/ddev/.htaccess
Normal file
24
drupal-commerce-kickstart/config/splits/ddev/.htaccess
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
# 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>
|
||||
|
|
@ -0,0 +1 @@
|
|||
default_transport: ddev_smtp
|
||||
0
drupal-commerce-kickstart/config/sync/.gitkeep
Normal file
0
drupal-commerce-kickstart/config/sync/.gitkeep
Normal file
24
drupal-commerce-kickstart/config/sync/.htaccess
Normal file
24
drupal-commerce-kickstart/config/sync/.htaccess
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
# 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_php.c>
|
||||
php_flag engine off
|
||||
</IfModule>
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
_core:
|
||||
default_config_hash: jvTSppzcgH5wnzBhX5xnAExcp2I1CzkQ_aky65XNfYI
|
||||
menu_depth: 4
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
_core:
|
||||
default_config_hash: WgdZsrd_5w9jlmcHV4R9dD2tG9OZEkYo4I_O8h7Gq8Q
|
||||
max_bundle_number: 20
|
||||
hoverintent_functionality: true
|
||||
show_local_tasks: false
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
uuid: ad3b596d-22db-4ce0-bd1c-05609061dce5
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: fxqz51vznyPWsGSU_3z1b1jp4GbZorPLjmXD0Q70y1M
|
||||
id: commerce_license
|
||||
label: 'Commerce License'
|
||||
backend: database
|
||||
backend_configuration:
|
||||
lease_time: 300
|
||||
processor: cron
|
||||
processing_time: 180
|
||||
threshold: { }
|
||||
locked: true
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
uuid: 0b658681-6db8-4a96-b02d-bc4214a17144
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: OQlGKYeBfi-MnjiuafqBiLopnCd9XpM53-8Zi5cw9pI
|
||||
id: commerce_license_notify
|
||||
label: 'Commerce License Notifications'
|
||||
backend: database
|
||||
backend_configuration:
|
||||
lease_time: 300
|
||||
processor: cron
|
||||
processing_time: 180
|
||||
threshold: { }
|
||||
locked: true
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
uuid: 27850ecd-c29d-402b-8156-725019e12170
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: U02Wab4V6J9J8gEyT5tlBu47GwnGCYpgd3CBhXrrWU0
|
||||
id: default
|
||||
label: Default
|
||||
backend: database
|
||||
backend_configuration:
|
||||
lease_time: 300
|
||||
processor: cron
|
||||
processing_time: 90
|
||||
threshold:
|
||||
type: 0
|
||||
limit: 0
|
||||
state: all
|
||||
locked: false
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
_core:
|
||||
default_config_hash: fUksROt4FfkAU9BV4hV2XvhTBSS2nTNrZS4U7S-tKrs
|
||||
interval: 10800
|
||||
25
drupal-commerce-kickstart/config/sync/belgrade.settings.yml
Normal file
25
drupal-commerce-kickstart/config/sync/belgrade.settings.yml
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
_core:
|
||||
default_config_hash: CjkQ-xZe9_McsEpYCGrmpr06sthpEoZ1TwIF3xozEbg
|
||||
inline_logo: 1
|
||||
fieldset_accordion: 0
|
||||
local_tasks_fixed: 1
|
||||
font_set: raleway
|
||||
belgrade_icons: 1
|
||||
product_teaser: belgrade
|
||||
message_type: alerts
|
||||
main_container: container-xl
|
||||
navigation_toggle_text: Menu
|
||||
navigation_logo: 1
|
||||
navigation_position: start
|
||||
region_class_navigation: 'bg-primary opacify-links text-white'
|
||||
region_class_top_bar: 'position-relative bg-dark py-2 opacify-links text-white'
|
||||
region_container_top_bar: container-xl
|
||||
region_class_header: 'py-5 mt-lg-4'
|
||||
region_container_header: container-xl
|
||||
region_container_highlighted: container-xl
|
||||
region_class_sidebar_first: 'col-lg-3 me-lg-4 order-first'
|
||||
region_container_sidebar_first: ''
|
||||
region_class_content: col
|
||||
region_class_sidebar_second: col-lg-3
|
||||
region_class_footer: 'bg-dark py-5 opacify-links text-white'
|
||||
region_container_footer: container-xl
|
||||
|
|
@ -0,0 +1,27 @@
|
|||
uuid: b20846f5-35fb-479c-b604-bbbb325de3ab
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- system.menu.account
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- belgrade
|
||||
_core:
|
||||
default_config_hash: W1mUb_Fv5zaCLkG8UWNiJ76yfWgtvNV8gX5jk8SSnEE
|
||||
id: belgrade_account_menu
|
||||
theme: belgrade
|
||||
region: top_bar
|
||||
weight: -6
|
||||
provider: null
|
||||
plugin: 'system_menu_block:account'
|
||||
settings:
|
||||
id: 'system_menu_block:account'
|
||||
label: 'User account menu'
|
||||
label_display: '0'
|
||||
provider: system
|
||||
level: 1
|
||||
depth: 1
|
||||
expand_all_items: false
|
||||
visibility: { }
|
||||
|
|
@ -0,0 +1,25 @@
|
|||
uuid: eea73200-998c-4755-b2ed-b84306fc84b6
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- belgrade
|
||||
_core:
|
||||
default_config_hash: z46aFj7i7rALpdO3PRsi7pJCmgKxL0CUpq53JzXj9qs
|
||||
id: belgrade_branding
|
||||
theme: belgrade
|
||||
region: header
|
||||
weight: -9
|
||||
provider: null
|
||||
plugin: system_branding_block
|
||||
settings:
|
||||
id: system_branding_block
|
||||
label: 'Site branding'
|
||||
label_display: '0'
|
||||
provider: system
|
||||
use_site_logo: true
|
||||
use_site_name: false
|
||||
use_site_slogan: false
|
||||
visibility: { }
|
||||
|
|
@ -0,0 +1,26 @@
|
|||
uuid: 65cc8073-958f-4d21-bfd7-161847cabb0e
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- belgrade
|
||||
_core:
|
||||
default_config_hash: o9654zFbOpjd88E5j5l4Cby3t-WwUuTfQ6xcKSLsodg
|
||||
id: belgrade_breadcrumbs
|
||||
theme: belgrade
|
||||
region: highlighted
|
||||
weight: -7
|
||||
provider: null
|
||||
plugin: system_breadcrumb_block
|
||||
settings:
|
||||
id: system_breadcrumb_block
|
||||
label: Breadcrumbs
|
||||
label_display: '0'
|
||||
provider: system
|
||||
visibility:
|
||||
request_path:
|
||||
id: request_path
|
||||
negate: true
|
||||
pages: "/cart*\r\n/checkout*\r\n<front>"
|
||||
|
|
@ -0,0 +1,28 @@
|
|||
uuid: 7d323ed6-17ab-453c-af87-9a86d077deff
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- commerce_checkout
|
||||
- system
|
||||
theme:
|
||||
- belgrade
|
||||
_core:
|
||||
default_config_hash: jSLJ3sJUecEmCmbbB-ISvExMtHpzXsFIguGKTTI6lPA
|
||||
id: belgrade_checkout_progress
|
||||
theme: belgrade
|
||||
region: content
|
||||
weight: -7
|
||||
provider: null
|
||||
plugin: commerce_checkout_progress
|
||||
settings:
|
||||
id: commerce_checkout_progress
|
||||
label: 'Checkout progress'
|
||||
label_display: '0'
|
||||
provider: commerce_checkout
|
||||
visibility:
|
||||
request_path:
|
||||
id: request_path
|
||||
pages: '/checkout/*'
|
||||
negate: false
|
||||
context_mapping: { }
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
uuid: 004c9724-039b-4b8e-8950-f637089baf28
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- belgrade
|
||||
_core:
|
||||
default_config_hash: XJkApTCnidVbNIe-SvLIX1pVPIiw5j_m0SWT-eYw39E
|
||||
id: belgrade_content
|
||||
theme: belgrade
|
||||
region: content
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: system_main_block
|
||||
settings:
|
||||
id: system_main_block
|
||||
label: 'Main page content'
|
||||
label_display: '0'
|
||||
provider: system
|
||||
visibility: { }
|
||||
|
|
@ -0,0 +1,27 @@
|
|||
uuid: 1d4ed309-fc7d-45fe-82b2-1b02348cac0b
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- system.menu.footer
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- belgrade
|
||||
_core:
|
||||
default_config_hash: nI9USQjCYio-S2yKUK3OfHTG92pwjXbHdzhKKeAWaAY
|
||||
id: belgrade_footer
|
||||
theme: belgrade
|
||||
region: footer
|
||||
weight: -5
|
||||
provider: null
|
||||
plugin: 'system_menu_block:footer'
|
||||
settings:
|
||||
id: 'system_menu_block:footer'
|
||||
label: 'Footer menu'
|
||||
label_display: '0'
|
||||
provider: system
|
||||
level: 1
|
||||
depth: 0
|
||||
expand_all_items: false
|
||||
visibility: { }
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
uuid: 02f9b46b-d78d-41a1-ba35-a62c49983533
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- help
|
||||
theme:
|
||||
- belgrade
|
||||
_core:
|
||||
default_config_hash: gKtOcSQTQki2pujw1HB5crJu7WlQmuPbl9cMqPDeWtA
|
||||
id: belgrade_help
|
||||
theme: belgrade
|
||||
region: content
|
||||
weight: -8
|
||||
provider: null
|
||||
plugin: help_block
|
||||
settings:
|
||||
id: help_block
|
||||
label: Help
|
||||
label_display: '0'
|
||||
provider: help
|
||||
visibility: { }
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
uuid: a818e3c7-b889-4437-96bd-6dcaad793f8a
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- belgrade
|
||||
_core:
|
||||
default_config_hash: EAlCAHiVy5x3aTOW2K9XaWE4kelyfSSSKv8_uiomGJM
|
||||
id: belgrade_local_actions
|
||||
theme: belgrade
|
||||
region: content
|
||||
weight: -8
|
||||
provider: null
|
||||
plugin: local_actions_block
|
||||
settings:
|
||||
id: local_actions_block
|
||||
label: 'Primary admin actions'
|
||||
label_display: '0'
|
||||
provider: core
|
||||
visibility: { }
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
uuid: 86fc0d6a-8342-48e0-ac22-2f7df06f44e7
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- belgrade
|
||||
_core:
|
||||
default_config_hash: ShCI2CrHlOLfouMMyUnPcqHa3_sX443kM-yE9dIm05E
|
||||
id: belgrade_local_tasks
|
||||
theme: belgrade
|
||||
region: content
|
||||
weight: -9
|
||||
provider: null
|
||||
plugin: local_tasks_block
|
||||
settings:
|
||||
id: local_tasks_block
|
||||
label: Tabs
|
||||
label_display: '0'
|
||||
provider: core
|
||||
primary: true
|
||||
secondary: true
|
||||
visibility: { }
|
||||
|
|
@ -0,0 +1,27 @@
|
|||
uuid: 78b0181a-4923-4e17-ac56-2d36ece6a48f
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- system.menu.main
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- belgrade
|
||||
_core:
|
||||
default_config_hash: 63FLrk7BpcLU-5YLZwWVCOtOMozD8mSzBytCiu0Oznc
|
||||
id: belgrade_main_menu
|
||||
theme: belgrade
|
||||
region: navigation
|
||||
weight: -7
|
||||
provider: null
|
||||
plugin: 'system_menu_block:main'
|
||||
settings:
|
||||
id: 'system_menu_block:main'
|
||||
label: 'Main navigation'
|
||||
label_display: '0'
|
||||
provider: system
|
||||
level: 1
|
||||
depth: 1
|
||||
expand_all_items: false
|
||||
visibility: { }
|
||||
|
|
@ -0,0 +1,27 @@
|
|||
uuid: 0d5bb466-6132-4803-a81e-6885c27645cd
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- system.menu.main
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- belgrade
|
||||
_core:
|
||||
default_config_hash: AA8QZMYUufEoxWQtJSJUWpYh8KBN7SLCckigtlPAneI
|
||||
id: belgrade_main_menu_header
|
||||
theme: belgrade
|
||||
region: header
|
||||
weight: -8
|
||||
provider: null
|
||||
plugin: 'system_menu_block:main'
|
||||
settings:
|
||||
id: 'system_menu_block:main'
|
||||
label: 'Main navigation header'
|
||||
label_display: '0'
|
||||
provider: system
|
||||
level: 1
|
||||
depth: 1
|
||||
expand_all_items: false
|
||||
visibility: { }
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
uuid: 9055c2e4-4932-4a44-a849-a3e22492d595
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- belgrade
|
||||
_core:
|
||||
default_config_hash: uxiZlSldLtoOp05pfXeKJxxtvB0ckxx3mAAabJdAJnU
|
||||
id: belgrade_messages
|
||||
theme: belgrade
|
||||
region: highlighted
|
||||
weight: -8
|
||||
provider: null
|
||||
plugin: system_messages_block
|
||||
settings:
|
||||
id: system_messages_block
|
||||
label: 'Status messages'
|
||||
label_display: '0'
|
||||
provider: system
|
||||
visibility: { }
|
||||
|
|
@ -0,0 +1,41 @@
|
|||
uuid: 85e3ad2f-e5f9-4e43-b9b3-9c05f6dafb50
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
- block_visibility_conditions
|
||||
- block_visibility_conditions_node
|
||||
- block_visibility_conditions_taxonomy
|
||||
- system
|
||||
theme:
|
||||
- belgrade
|
||||
- belgrade
|
||||
_core:
|
||||
default_config_hash: 4sQo3UuHbrbLZzZUf13YP_N6Fij0jcdoy89cFXkpJCU
|
||||
id: belgrade_page_title
|
||||
theme: belgrade
|
||||
region: content
|
||||
weight: -10
|
||||
provider: null
|
||||
plugin: page_title_block
|
||||
settings:
|
||||
id: page_title_block
|
||||
label: 'Page title'
|
||||
label_display: '0'
|
||||
provider: core
|
||||
visibility:
|
||||
request_path:
|
||||
id: request_path
|
||||
negate: true
|
||||
context_mapping: { }
|
||||
pages: "<front>\r\n/product/*\r\n/products*\r\n"
|
||||
not_node_type:
|
||||
id: not_node_type
|
||||
bundles:
|
||||
landing_page: cklb_landing_page
|
||||
negate: null
|
||||
not_taxonomy_vocabulary:
|
||||
id: not_taxonomy_vocabulary
|
||||
bundles: { }
|
||||
negate: null
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
uuid: 495f81a2-7340-4272-8f7a-175df019acda
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- belgrade
|
||||
_core:
|
||||
default_config_hash: z0llL779cPFRJ5myqA63dPOl35O7K1lx6wP5omHTi8U
|
||||
id: belgrade_powered
|
||||
theme: belgrade
|
||||
region: footer
|
||||
weight: -7
|
||||
provider: null
|
||||
plugin: system_powered_by_block
|
||||
settings:
|
||||
id: system_powered_by_block
|
||||
label: 'Powered by Drupal'
|
||||
label_display: '0'
|
||||
provider: system
|
||||
visibility: { }
|
||||
|
|
@ -0,0 +1,24 @@
|
|||
uuid: 89f83880-94ee-4607-8d2b-bab8baa17d89
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- commerce_cart
|
||||
theme:
|
||||
- belgrade
|
||||
_core:
|
||||
default_config_hash: jUNmzvzK92cHuSw1Ohd5u22q92TI6e8hOeYlHhSaBgc
|
||||
id: belgrade_shopping_cart
|
||||
theme: belgrade
|
||||
region: top_bar
|
||||
weight: -10
|
||||
provider: null
|
||||
plugin: commerce_cart
|
||||
settings:
|
||||
id: commerce_cart
|
||||
label: 'Shopping Cart'
|
||||
label_display: '0'
|
||||
provider: commerce_cart
|
||||
dropdown: true
|
||||
item_text: items
|
||||
visibility: { }
|
||||
|
|
@ -0,0 +1,27 @@
|
|||
uuid: 31cf2403-ba59-4d7b-8527-e2e48e6b3e30
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- system.menu.social
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- belgrade
|
||||
_core:
|
||||
default_config_hash: UReBPHxHy4zKoBBa2ZttpWOjp5Jp9sxNEw23e1muAc8
|
||||
id: belgrade_social
|
||||
theme: belgrade
|
||||
region: footer
|
||||
weight: -4
|
||||
provider: null
|
||||
plugin: 'system_menu_block:social'
|
||||
settings:
|
||||
id: 'system_menu_block:social'
|
||||
label: "Let's get social"
|
||||
label_display: visible
|
||||
provider: system
|
||||
level: 1
|
||||
depth: 0
|
||||
expand_all_items: false
|
||||
visibility: { }
|
||||
|
|
@ -0,0 +1,27 @@
|
|||
uuid: 593bed6e-90ea-4aaa-8512-ede68cf07680
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- system.menu.social
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- belgrade
|
||||
_core:
|
||||
default_config_hash: Dr78JU06qEPwMRS9CDsTk011MO9E7Dv6zPVNyM1rDNM
|
||||
id: belgrade_social_navigation
|
||||
theme: belgrade
|
||||
region: navigation
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: 'system_menu_block:social'
|
||||
settings:
|
||||
id: 'system_menu_block:social'
|
||||
label: Social
|
||||
label_display: '0'
|
||||
provider: system
|
||||
level: 1
|
||||
depth: 0
|
||||
expand_all_items: false
|
||||
visibility: { }
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
uuid: 3ce40fef-01a8-445a-b3ef-6cabcf9858e3
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- centarro_claro
|
||||
_core:
|
||||
default_config_hash: Qk8uyFaFgDwn4NcA_6bxVW0820KO1hls-9xT7LQhwGc
|
||||
id: centarro_claro_breadcrumbs
|
||||
theme: centarro_claro
|
||||
region: breadcrumb
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: system_breadcrumb_block
|
||||
settings:
|
||||
id: system_breadcrumb_block
|
||||
label: Breadcrumbs
|
||||
label_display: '0'
|
||||
provider: system
|
||||
visibility: { }
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
uuid: b3810576-2ad2-4233-a9cb-0e5a930b399e
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- centarro_claro
|
||||
_core:
|
||||
default_config_hash: FdXl2qtoXTyCFiulwQ6vaeT72GG5c4BvlmlzY8-2Egk
|
||||
id: centarro_claro_content
|
||||
theme: centarro_claro
|
||||
region: content
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: system_main_block
|
||||
settings:
|
||||
id: system_main_block
|
||||
label: 'Main page content'
|
||||
label_display: '0'
|
||||
provider: system
|
||||
visibility: { }
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
uuid: ac829274-c1b9-472e-9060-4a54abb52819
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- help
|
||||
theme:
|
||||
- centarro_claro
|
||||
_core:
|
||||
default_config_hash: 8qSB2cHXvg7V4fqHDgW5PXNSdp5gUQUuKBxQnueNt8Q
|
||||
id: centarro_claro_help
|
||||
theme: centarro_claro
|
||||
region: help
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: help_block
|
||||
settings:
|
||||
id: help_block
|
||||
label: Help
|
||||
label_display: '0'
|
||||
provider: help
|
||||
visibility: { }
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
uuid: d19ec567-a8a6-481a-8571-0ff1b8a9f5e8
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- centarro_claro
|
||||
_core:
|
||||
default_config_hash: MU6CIFtyelNAF9DEmjrZZCTiqCPAfhvczjGaB6qrjxA
|
||||
id: centarro_claro_local_actions
|
||||
theme: centarro_claro
|
||||
region: content
|
||||
weight: -10
|
||||
provider: null
|
||||
plugin: local_actions_block
|
||||
settings:
|
||||
id: local_actions_block
|
||||
label: 'Primary admin actions'
|
||||
label_display: '0'
|
||||
provider: core
|
||||
visibility: { }
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
uuid: a0a1ccf7-3568-4701-bd3c-9250b4f31391
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- centarro_claro
|
||||
_core:
|
||||
default_config_hash: VffWQmRxsoFhuuCL5_ykunS8JDdZZneddyFH5jhBawA
|
||||
id: centarro_claro_messages
|
||||
theme: centarro_claro
|
||||
region: highlighted
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: system_messages_block
|
||||
settings:
|
||||
id: system_messages_block
|
||||
label: 'Status messages'
|
||||
label_display: '0'
|
||||
provider: system
|
||||
visibility: { }
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
uuid: 7db8a456-75d8-4051-9086-b755744628e0
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- centarro_claro
|
||||
_core:
|
||||
default_config_hash: nNJHJo53pZhNP1t4XvVEXr2WyVJQDUI6VDsEQvOgGN8
|
||||
id: centarro_claro_page_title
|
||||
theme: centarro_claro
|
||||
region: header
|
||||
weight: -30
|
||||
provider: null
|
||||
plugin: page_title_block
|
||||
settings:
|
||||
id: page_title_block
|
||||
label: 'Page title'
|
||||
label_display: '0'
|
||||
provider: core
|
||||
visibility: { }
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
uuid: 6c893817-26db-48ae-96da-50de42b2557f
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- centarro_claro
|
||||
_core:
|
||||
default_config_hash: mQYLMonh5C015m1qMXwC5V3DNn7IPrAlGrfM9eHG0tI
|
||||
id: centarro_claro_primary_local_tasks
|
||||
theme: centarro_claro
|
||||
region: header
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: local_tasks_block
|
||||
settings:
|
||||
id: local_tasks_block
|
||||
label: 'Primary tabs'
|
||||
label_display: '0'
|
||||
provider: core
|
||||
primary: true
|
||||
secondary: false
|
||||
visibility: { }
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
uuid: cfddf60a-d64d-4c98-9840-0740293bd30e
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- centarro_claro
|
||||
_core:
|
||||
default_config_hash: wUGTmwoOa879RFJlrmWYeOEK4gpaF__sM1jc8Z54yxQ
|
||||
id: centarro_claro_secondary_local_tasks
|
||||
theme: centarro_claro
|
||||
region: pre_content
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: local_tasks_block
|
||||
settings:
|
||||
id: local_tasks_block
|
||||
label: 'Secondary tabs'
|
||||
label_display: '0'
|
||||
provider: core
|
||||
primary: false
|
||||
secondary: true
|
||||
visibility: { }
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
uuid: 72e924fb-22cb-4e14-a5c8-0168604ca9cc
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- claro
|
||||
_core:
|
||||
default_config_hash: NjcxOBrPOiK5-38t56DwFBDVY4yer7YSlbRWXFuHe7A
|
||||
id: claro_breadcrumbs
|
||||
theme: claro
|
||||
region: breadcrumb
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: system_breadcrumb_block
|
||||
settings:
|
||||
id: system_breadcrumb_block
|
||||
label: Breadcrumbs
|
||||
label_display: '0'
|
||||
provider: system
|
||||
visibility: { }
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
uuid: 6abf884f-1d84-422d-aaf0-4d425f43fac4
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- claro
|
||||
_core:
|
||||
default_config_hash: a0Yyx1GeyKarZ4T_yXQBR_ZFKnXiFLtxAb6gWLd8nr0
|
||||
id: claro_content
|
||||
theme: claro
|
||||
region: content
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: system_main_block
|
||||
settings:
|
||||
id: system_main_block
|
||||
label: 'Main page content'
|
||||
label_display: '0'
|
||||
provider: system
|
||||
visibility: { }
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
uuid: 05940358-70fd-4c8f-91ee-01f6a318e887
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- help
|
||||
theme:
|
||||
- claro
|
||||
_core:
|
||||
default_config_hash: jccFSSVqV0WCDb6NtML1VWAWTtDbZ-zn5YgTRMgMrIM
|
||||
id: claro_help
|
||||
theme: claro
|
||||
region: help
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: help_block
|
||||
settings:
|
||||
id: help_block
|
||||
label: Help
|
||||
label_display: '0'
|
||||
provider: help
|
||||
visibility: { }
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
uuid: 238d8f15-b576-40fc-81c8-99ea82b63a54
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- claro
|
||||
_core:
|
||||
default_config_hash: CdXfDmRgAvms7EQovxxWPdYi0GitxeRbVtScYK16ZH0
|
||||
id: claro_local_actions
|
||||
theme: claro
|
||||
region: content
|
||||
weight: -10
|
||||
provider: null
|
||||
plugin: local_actions_block
|
||||
settings:
|
||||
id: local_actions_block
|
||||
label: 'Primary admin actions'
|
||||
label_display: '0'
|
||||
provider: core
|
||||
visibility: { }
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
uuid: e5315b3b-b8d0-4f84-a18c-6f25a8d08835
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- claro
|
||||
_core:
|
||||
default_config_hash: '-Ac3ISpIT0PQ-whzD7_dw0SdKi6dAbRFNWdSjOiVDqg'
|
||||
id: claro_messages
|
||||
theme: claro
|
||||
region: highlighted
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: system_messages_block
|
||||
settings:
|
||||
id: system_messages_block
|
||||
label: 'Status messages'
|
||||
label_display: '0'
|
||||
provider: system
|
||||
visibility: { }
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
uuid: 659291a3-9d5e-4e97-aef3-7ca674c7cc35
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- claro
|
||||
_core:
|
||||
default_config_hash: fNwDdW063tk_ktzSWzZVeQS9wzvLooVO280BQ9WrsIs
|
||||
id: claro_page_title
|
||||
theme: claro
|
||||
region: header
|
||||
weight: -30
|
||||
provider: null
|
||||
plugin: page_title_block
|
||||
settings:
|
||||
id: page_title_block
|
||||
label: 'Page title'
|
||||
label_display: '0'
|
||||
provider: core
|
||||
visibility: { }
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
uuid: 9f6bc03a-3e6e-419c-b61d-45e3408cfbae
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- claro
|
||||
_core:
|
||||
default_config_hash: ACjBZI5shAMiiUpsz-inLYVXDqNNXRnSzAWV3kV_8Hw
|
||||
id: claro_primary_local_tasks
|
||||
theme: claro
|
||||
region: header
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: local_tasks_block
|
||||
settings:
|
||||
id: local_tasks_block
|
||||
label: 'Primary tabs'
|
||||
label_display: '0'
|
||||
provider: core
|
||||
primary: true
|
||||
secondary: false
|
||||
visibility: { }
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
uuid: 55eb29df-b7e5-4662-8276-ebabe51e71dc
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- claro
|
||||
_core:
|
||||
default_config_hash: 2L0geP-ixCbCkEpW6BVF6H7vDUZN4ea07_Y9CociQm4
|
||||
id: claro_secondary_local_tasks
|
||||
theme: claro
|
||||
region: pre_content
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: local_tasks_block
|
||||
settings:
|
||||
id: local_tasks_block
|
||||
label: 'Secondary tabs'
|
||||
label_display: '0'
|
||||
provider: core
|
||||
primary: false
|
||||
secondary: true
|
||||
visibility: { }
|
||||
|
|
@ -0,0 +1,31 @@
|
|||
uuid: 7a79ec1f-0d5f-4ba6-8519-bc8b5f18226b
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- facets.facet.product_brand
|
||||
module:
|
||||
- facets
|
||||
- system
|
||||
theme:
|
||||
- belgrade
|
||||
_core:
|
||||
default_config_hash: VFMtnq5pk2Zlpd0A2xo_uakKnW2MzBjUT3Yja7uwjCg
|
||||
id: productbrand
|
||||
theme: belgrade
|
||||
region: sidebar_first
|
||||
weight: -8
|
||||
provider: null
|
||||
plugin: 'facet_block:product_brand'
|
||||
settings:
|
||||
id: 'facet_block:product_brand'
|
||||
label: Brand
|
||||
label_display: visible
|
||||
provider: facets
|
||||
context_mapping: { }
|
||||
block_id: productbrand
|
||||
visibility:
|
||||
request_path:
|
||||
id: request_path
|
||||
negate: false
|
||||
pages: "/products\r\n/products*"
|
||||
|
|
@ -0,0 +1,31 @@
|
|||
uuid: dc0ee30d-5ad2-4b88-b007-6b5d6eb03822
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- facets.facet.product_collections
|
||||
module:
|
||||
- facets
|
||||
- system
|
||||
theme:
|
||||
- belgrade
|
||||
_core:
|
||||
default_config_hash: vK4m_1-VKAXqZKKrJKt72MwRYUEg0gV_20EWc2JjR5A
|
||||
id: productcollections
|
||||
theme: belgrade
|
||||
region: sidebar_first
|
||||
weight: -9
|
||||
provider: null
|
||||
plugin: 'facet_block:product_collections'
|
||||
settings:
|
||||
id: 'facet_block:product_collections'
|
||||
label: Categories
|
||||
label_display: visible
|
||||
provider: facets
|
||||
context_mapping: { }
|
||||
block_id: productcollections
|
||||
visibility:
|
||||
request_path:
|
||||
id: request_path
|
||||
negate: false
|
||||
pages: "/products\r\n/products*"
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
uuid: 651f0002-b8a5-4363-ab2f-2cfd03e6e5e4
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: zglzjmYxi0G0ag9MZ02y0LSJOdpWRwJxyP_OvFojFyo
|
||||
id: basic
|
||||
label: 'Basic block'
|
||||
revision: 0
|
||||
description: 'A basic block contains a title and a body.'
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
uuid: 145f35e7-2683-4f6a-9526-160a28663012
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: quEdz9yoJaOPjMfWqL5nWXdR-0oxuR_ierAhmuBd-1E
|
||||
id: cklb_button
|
||||
label: Button
|
||||
revision: 0
|
||||
description: 'Simple Call to Action Button block'
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
uuid: 7f718b1b-ff8b-455b-9413-21726efa56b7
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: aqyngob856rvY62EL-sbZJqz3gu--VFuWWkQ3_EOcSc
|
||||
id: cklb_hero
|
||||
label: Hero
|
||||
revision: 0
|
||||
description: 'Block for adding text with optional Call to Action and Subtitle '
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
uuid: 00dec984-bd4a-45c7-8766-2f7a839c5386
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: uTZxl1JyzUpPM84ghoVhYy3ozsJ2CgmktEsSuzkPWBI
|
||||
id: cklb_image
|
||||
label: Image
|
||||
revision: 0
|
||||
description: 'Simple image block'
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
uuid: 6e777863-23c7-4479-9927-320946c5ba12
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: AkxfIX8ea87Cc8VjgUXVVMyIkBxjQ2DuAr8pt2qFOMU
|
||||
id: cklb_products
|
||||
label: Products
|
||||
revision: 0
|
||||
description: 'Simple block for creating a list of products'
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
uuid: 7b695cdb-2b87-4196-8ada-585c698934aa
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: dDLukr_ZcPzm7tpX9rq0REBjtJyBZD151hnHaJmBfk4
|
||||
id: cklb_text
|
||||
label: Text
|
||||
revision: 0
|
||||
description: 'Simple text block'
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
uuid: 6c352635-1d75-47a8-aab4-6539715885e7
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: TXBwrT25jhMgNcEWj7LYnMKhrCcrEqiQ_QxyQne-T8E
|
||||
id: cklb_title
|
||||
label: Title
|
||||
revision: 0
|
||||
description: 'Title block with additional display for H1 title.'
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
_core:
|
||||
default_config_hash: OusJbhshiF2mH12q_oFQAZdYWkXevgKFIUqbdNufCKU
|
||||
prevent_load_bootstrap: false
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
uuid: bfc4346f-2a7b-4893-9b47-44742dde00a1
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: z2gP53l-qees_gzxC5Gtc0Z0d3YjscK3f-0WRyecg7k
|
||||
id: desktop
|
||||
label: Desktop
|
||||
base_class: col-lg
|
||||
weight: -10
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
uuid: 4e682971-afdf-486b-968f-83432f8a6b62
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: I6QslJrnaSjT6Wg4T1KRmtebhDJribTPkBE2bb9hS58
|
||||
id: mobile
|
||||
label: Mobile
|
||||
base_class: col
|
||||
weight: -8
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
uuid: e2bdf394-73de-4021-b915-fe85db7941e6
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: 96ZiDaMm48OUV0myM8JrBfkZXmvUfFzDsZ30EGzn_OU
|
||||
id: tablet
|
||||
label: Tablet
|
||||
base_class: col-md
|
||||
weight: -9
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
uuid: 83880b58-8f5e-4940-82d2-a4b97ef43742
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: bN0uiGHyvIH9vi-0WZ8qI_SYExbwkfSJ-b31BPwaZ_4
|
||||
id: blb_col_1
|
||||
label: 'Bootstrap 1 Col'
|
||||
number_of_columns: 1
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
uuid: 3cdf1956-b495-43c6-b515-7e4076b5d8b2
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: WkgxA4yi56P0DziDKST6vf2VQsRuyMo3hMTDpJTbZuA
|
||||
id: blb_col_10
|
||||
label: 'Bootstrap 10 Cols'
|
||||
number_of_columns: 10
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
uuid: 3cd97047-77a0-4969-87bd-de9913478bce
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: 0LYrR1gX_9UiLJL3IfpxBKP0k8LRoSbFgB-8ic5WXv4
|
||||
id: blb_col_11
|
||||
label: 'Bootstrap 11 Cols'
|
||||
number_of_columns: 11
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
uuid: 028da3cc-ed6d-4f2b-88a3-163ae26965e7
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: '-BXON4B4F-7viWBp6z9j0ivXakcO0g0ZPgIqEEnOLCU'
|
||||
id: blb_col_12
|
||||
label: 'Bootstrap 12 Cols'
|
||||
number_of_columns: 12
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
uuid: 3e2b1e2e-3b33-4f2a-8676-7fd5ef7095e1
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: DLxxjhNttmPjAzr7GspBn7505coB31nXu6Zx93PDuNU
|
||||
id: blb_col_2
|
||||
label: 'Bootstrap 2 Cols'
|
||||
number_of_columns: 2
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
uuid: 5ec9e8fc-dd32-4038-b137-2411f73778d3
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: FD9TR2PnKy0Ldqa13hIMpx8aSFkFGYlg463MLkUEfiQ
|
||||
id: blb_col_3
|
||||
label: 'Bootstrap 3 Cols'
|
||||
number_of_columns: 3
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
uuid: 2535825b-96d0-4a01-af36-4f29b6783717
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: 0TtaXM7MGi6UW1bXTqAumlZNwm-EdTLtAQjl80zsWZs
|
||||
id: blb_col_4
|
||||
label: 'Bootstrap 4 Cols'
|
||||
number_of_columns: 4
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
uuid: 47cf1ac5-47d1-4ee4-828f-173a41705261
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: 0A6-yV1rlwn5QCvLuHgp3ReiaG_iw8tTXIExmMau-5g
|
||||
id: blb_col_5
|
||||
label: 'Bootstrap 5 Cols'
|
||||
number_of_columns: 5
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
uuid: 7111d087-39d8-4707-8f49-c350c6390d8a
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: ivT0tsVljQNm-lI9KDCMv7FJPKbQd6lT_DsaavVBNek
|
||||
id: blb_col_6
|
||||
label: 'Bootstrap 6 Cols'
|
||||
number_of_columns: 6
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
uuid: cd3c2cc2-6191-484e-9d95-e9c9c471b0d5
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: u98rfZWR37RTM-zc2zgYi5vUflBcfS-97TmbixnGjsg
|
||||
id: blb_col_7
|
||||
label: 'Bootstrap 7 Cols'
|
||||
number_of_columns: 7
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
uuid: 947f1b8d-6c57-4422-a049-b0d08642c6ed
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: Y2hGTqftGmOJk99qxkPMi8DdrGwkjX-5S8z6CdtdlXo
|
||||
id: blb_col_8
|
||||
label: 'Bootstrap 8 Cols'
|
||||
number_of_columns: 8
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
uuid: b76ab93f-e1f6-4781-8884-0bb9549bc983
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: kih7eZ2j4giD51zNZ7gS6Ym7YMRX1reSlB1JiA0I34Y
|
||||
id: blb_col_9
|
||||
label: 'Bootstrap 9 Cols'
|
||||
number_of_columns: 9
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
uuid: 92965e6f-5ca1-4ec6-b9d0-320b7fa6c02f
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: aGmLubu4Fili-N9znzJCobCaW57EZqMBj4vkoaVYxO4
|
||||
id: blb_col_2_25_75
|
||||
layout_id: blb_col_2
|
||||
label: '25% 75%'
|
||||
structure: '3 9'
|
||||
default_breakpoints: null
|
||||
breakpoints:
|
||||
desktop: desktop
|
||||
tablet: tablet
|
||||
mobile: mobile
|
||||
weight: -9
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
uuid: 5587388b-2aac-401d-9151-5083304bda1f
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: E7sWvz551tuIYeCtb3pXg-QKQgg8BoVmM7bKkixipVk
|
||||
id: blb_col_2_75_25
|
||||
layout_id: blb_col_2
|
||||
label: '75% 25%'
|
||||
structure: '9 3'
|
||||
default_breakpoints: null
|
||||
breakpoints:
|
||||
desktop: desktop
|
||||
tablet: tablet
|
||||
mobile: mobile
|
||||
weight: -8
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
uuid: 675b5bc7-8fa9-4cee-abcb-492fa095a699
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: lWz1Xh0CB4kXmid_VrEQspcEG0BMWA_FvZo0R6F2Gjw
|
||||
id: blb_col_2_full_width
|
||||
layout_id: blb_col_2
|
||||
label: 'Full width'
|
||||
structure: '12'
|
||||
default_breakpoints: null
|
||||
breakpoints:
|
||||
tablet: tablet
|
||||
mobile: mobile
|
||||
weight: 0
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
uuid: 00913efb-d779-47de-a81f-3312568983d0
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: _JlVkXSFtwrKuw7erhkewxSc_SpEMIQONDdpfXJKTnE
|
||||
id: blb_col_2_two_equal_columns
|
||||
layout_id: blb_col_2
|
||||
label: 'Two equal columns'
|
||||
structure: '6 6'
|
||||
default_breakpoints: null
|
||||
breakpoints:
|
||||
desktop: desktop
|
||||
tablet: tablet
|
||||
mobile: mobile
|
||||
weight: -10
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
uuid: 01f24555-1d43-4a8f-bd74-efc7dba1818f
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: hElqRJCm8-X3LXYiAXQbVRIAHeZLuddL987uzkf9B3s
|
||||
id: blb_col_3_25_25_50
|
||||
layout_id: blb_col_3
|
||||
label: '25% 25% 50%'
|
||||
structure: '3 3 6'
|
||||
default_breakpoints: null
|
||||
breakpoints:
|
||||
desktop: desktop
|
||||
tablet: tablet
|
||||
mobile: mobile
|
||||
weight: 0
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
uuid: 877da9d9-e043-481a-a58e-29a7fb0df5a7
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: nsESdQ_5mMECGudfHgJxoYf075WxxnB9OBQnfPyuqEs
|
||||
id: blb_col_3_25_50_25
|
||||
layout_id: blb_col_3
|
||||
label: '25% 50% 25% '
|
||||
structure: '3 6 3'
|
||||
default_breakpoints: null
|
||||
breakpoints:
|
||||
desktop: desktop
|
||||
tablet: tablet
|
||||
mobile: mobile
|
||||
weight: 0
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
uuid: d71aea77-5f04-4edc-a837-4720ff565e65
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: gomEHPSzgCxRNAXrM3tDFFE4eebaqwMM_I2lIUscgtk
|
||||
id: blb_col_3_50_25_25
|
||||
layout_id: blb_col_3
|
||||
label: '50% 25% 25%'
|
||||
structure: '6 3 3'
|
||||
default_breakpoints: null
|
||||
breakpoints:
|
||||
desktop: desktop
|
||||
tablet: tablet
|
||||
mobile: mobile
|
||||
weight: -9
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
uuid: 277c5abf-7a27-40bf-8e61-4e3dac575e4c
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: X9TJDnZOtZXIYyvhHDoGoRHQaPNhn73qa-2FT7s3MOg
|
||||
id: blb_col_3_full_width
|
||||
layout_id: blb_col_3
|
||||
label: 'Full width'
|
||||
structure: '12'
|
||||
default_breakpoints: null
|
||||
breakpoints:
|
||||
tablet: tablet
|
||||
mobile: mobile
|
||||
weight: 0
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
uuid: b9bdd862-10ab-4432-90c6-fecf545da139
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: 2KeA85TJK_Flg86CkW7CquGGfI2SaLLfNNxeIG_gyYg
|
||||
id: blb_col_3_three_equal_columns
|
||||
layout_id: blb_col_3
|
||||
label: 'Three equal columns'
|
||||
structure: '4 4 4'
|
||||
default_breakpoints: null
|
||||
breakpoints:
|
||||
desktop: desktop
|
||||
tablet: tablet
|
||||
mobile: mobile
|
||||
weight: -10
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
uuid: 553c703d-01f9-4116-a664-387da3812e86
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: rf8EkOeZJXg7DImyz8aGvInONpjPbHeGncashqZEnZE
|
||||
id: blb_col_4_2_4_2_4
|
||||
layout_id: blb_col_4
|
||||
label: '2/12 4/12 2/12 4/12'
|
||||
structure: '2 4 2 4'
|
||||
default_breakpoints: null
|
||||
breakpoints:
|
||||
desktop: desktop
|
||||
tablet: tablet
|
||||
mobile: mobile
|
||||
weight: 0
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
uuid: 3432091e-ebd9-403b-8365-ad284e3d96b8
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: xyddoK66uN761dMRwPgJOSGZXtDocSxHkvkDJHclNVw
|
||||
id: blb_col_4_2_4_4_2
|
||||
layout_id: blb_col_4
|
||||
label: '2/12 4/12 4/12 2/12'
|
||||
structure: '2 4 4 2'
|
||||
default_breakpoints: null
|
||||
breakpoints:
|
||||
desktop: desktop
|
||||
tablet: tablet
|
||||
mobile: mobile
|
||||
weight: 0
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
uuid: dd78ae35-e5aa-4947-902a-84b42ebae363
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: ilcOnJGEsB_S9lnbNS0cooPLrMpemo9wT-Ud8dxR-kM
|
||||
id: blb_col_4_4_2_2_4
|
||||
layout_id: blb_col_4
|
||||
label: '4/12 2/12 2/12 4/12'
|
||||
structure: '4 2 2 4'
|
||||
default_breakpoints: null
|
||||
breakpoints:
|
||||
desktop: desktop
|
||||
tablet: tablet
|
||||
mobile: mobile
|
||||
weight: 0
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
uuid: 8f74cefa-0b38-4f94-b424-42c609123b96
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: FFdaGr1bXYtqxGNXCvwu_b8Vh-Aj6R7z7IpZoS-aiho
|
||||
id: blb_col_4_4_4_2_2
|
||||
layout_id: blb_col_4
|
||||
label: '4/12 4/12 2/12 2/12'
|
||||
structure: '4 4 2 2'
|
||||
default_breakpoints: null
|
||||
breakpoints:
|
||||
desktop: desktop
|
||||
tablet: tablet
|
||||
mobile: mobile
|
||||
weight: -9
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
uuid: 9486ba3f-4a1f-489e-81d2-189f116f74c8
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: 7hnq4Oj_lmITn--xSnHtG4PqVnFUODHtEl21KUU0HY8
|
||||
id: blb_col_4_four_equal_columns
|
||||
layout_id: blb_col_4
|
||||
label: 'Four equal columns'
|
||||
structure: '3 3 3 3'
|
||||
default_breakpoints: null
|
||||
breakpoints:
|
||||
desktop: desktop
|
||||
tablet: tablet
|
||||
mobile: mobile
|
||||
weight: -10
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
uuid: 5381c2b8-628f-44bc-a473-bad6478ac029
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: pizOrmyMhLS2jVhmeH2557X8PbPX2E7lSfySrInJW3I
|
||||
id: blb_col_4_full_width
|
||||
layout_id: blb_col_4
|
||||
label: 'Full width'
|
||||
structure: '12'
|
||||
default_breakpoints: null
|
||||
breakpoints:
|
||||
tablet: tablet
|
||||
mobile: mobile
|
||||
weight: 0
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
uuid: 07ab5690-7397-457f-8f8d-dfd4a88535c1
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: fuy67ckoFODQ672PjM6TvC0rIx_Thhce7NSHll4hXBc
|
||||
id: blb_col_5_2_2_2_2_4
|
||||
layout_id: blb_col_5
|
||||
label: '2/12 2/12 2/12 2/12 4/12'
|
||||
structure: '2 2 2 2 4'
|
||||
default_breakpoints: null
|
||||
breakpoints:
|
||||
desktop: desktop
|
||||
tablet: tablet
|
||||
mobile: mobile
|
||||
weight: 0
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
uuid: 2615fb7f-9215-4da9-b815-aad47c8b2fe9
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: Ce5KChtUSIOsBP4Q0TOcPeW41HXnyGTZA3ZN7H0gZ3Q
|
||||
id: blb_col_5_2_2_2_4_2
|
||||
layout_id: blb_col_5
|
||||
label: '2/12 2/12 2/12 4/12 2/12'
|
||||
structure: '2 2 2 4 2'
|
||||
default_breakpoints: null
|
||||
breakpoints:
|
||||
desktop: desktop
|
||||
tablet: tablet
|
||||
mobile: mobile
|
||||
weight: -7
|
||||
Some files were not shown because too many files have changed in this diff Show more
Reference in a new issue