Osnova za sajt

master
kompot r00t 2023-06-06 03:34:48 +02:00
commit 667bae2fd3
415 changed files with 87994 additions and 0 deletions

260
.ddev/config.yaml 100644
View File

@ -0,0 +1,260 @@
name: cirkovizija
type: drupal10
docroot: web
php_version: "8.1"
webserver_type: nginx-fpm
router_http_port: "80"
router_https_port: "443"
xdebug_enabled: false
additional_hostnames: []
additional_fqdns: []
database:
type: mariadb
version: "10.4"
nfs_mount_enabled: false
mutagen_enabled: false
use_dns_when_possible: true
composer_version: "2"
web_environment: []
nodejs_version: "16"
# Key features of ddev's config.yaml:
# name: <projectname> # Name of the project, automatically provides
# http://projectname.ddev.site and https://projectname.ddev.site
# type: <projecttype> # drupal6/7/8, backdrop, typo3, wordpress, php
# docroot: <relative_path> # Relative path to the directory containing index.php.
# php_version: "7.4" # PHP version to use, "5.6", "7.0", "7.1", "7.2", "7.3", "7.4", "8.0", "8.1", "8.2"
# You can explicitly specify the webimage but this
# is not recommended, as the images are often closely tied to ddev's' behavior,
# so this can break upgrades.
# webimage: <docker_image> # nginx/php docker image.
# database:
# type: <dbtype> # mysql, mariadb
# version: <version> # database version, like "10.3" or "8.0"
# Note that mariadb_version or mysql_version from v1.18 and earlier
# will automatically be converted to this notation with just a "ddev config --auto"
# router_http_port: <port> # Port to be used for http (defaults to port 80)
# router_https_port: <port> # Port for https (defaults to 443)
# xdebug_enabled: false # Set to true to enable xdebug and "ddev start" or "ddev restart"
# Note that for most people the commands
# "ddev xdebug" to enable xdebug and "ddev xdebug off" to disable it work better,
# as leaving xdebug enabled all the time is a big performance hit.
# xhprof_enabled: false # Set to true to enable xhprof and "ddev start" or "ddev restart"
# Note that for most people the commands
# "ddev xhprof" to enable xhprof and "ddev xhprof off" to disable it work better,
# as leaving xhprof enabled all the time is a big performance hit.
# webserver_type: nginx-fpm # or apache-fpm
# timezone: Europe/Berlin
# This is the timezone used in the containers and by PHP;
# it can be set to any valid timezone,
# see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
# For example Europe/Dublin or MST7MDT
# composer_root: <relative_path>
# Relative path to the composer root directory from the project root. This is
# the directory which contains the composer.json and where all Composer related
# commands are executed.
# composer_version: "2"
# You can set it to "" or "2" (default) for Composer v2 or "1" for Composer v1
# to use the latest major version available at the time your container is built.
# It is also possible to use each other Composer version channel. This includes:
# - 2.2 (latest Composer LTS version)
# - stable
# - preview
# - snapshot
# Alternatively, an explicit Composer version may be specified, for example "2.2.18".
# To reinstall Composer after the image was built, run "ddev debug refresh".
# nodejs_version: "16"
# change from the default system Node.js version to another supported version, like 12, 14, 17, 18.
# Note that you can use 'ddev nvm' or nvm inside the web container to provide nearly any
# Node.js version, including v6, etc.
# additional_hostnames:
# - somename
# - someothername
# would provide http and https URLs for "somename.ddev.site"
# and "someothername.ddev.site".
# additional_fqdns:
# - example.com
# - sub1.example.com
# would provide http and https URLs for "example.com" and "sub1.example.com"
# Please take care with this because it can cause great confusion.
# upload_dir: custom/upload/dir
# would set the destination path for ddev import-files to <docroot>/custom/upload/dir
# When mutagen is enabled this path is bind-mounted so that all the files
# in the upload_dir don't have to be synced into mutagen
# working_dir:
# web: /var/www/html
# db: /home
# would set the default working directory for the web and db services.
# These values specify the destination directory for ddev ssh and the
# directory in which commands passed into ddev exec are run.
# omit_containers: [db, dba, ddev-ssh-agent]
# Currently only these containers are supported. Some containers can also be
# omitted globally in the ~/.ddev/global_config.yaml. Note that if you omit
# the "db" container, several standard features of ddev that access the
# database container will be unusable. In the global configuration it is also
# possible to omit ddev-router, but not here.
# nfs_mount_enabled: false
# Great performance improvement but requires host configuration first.
# See https://ddev.readthedocs.io/en/latest/users/install/performance/#nfs
# mutagen_enabled: false
# Performance improvement using mutagen asynchronous updates.
# See https://ddev.readthedocs.io/en/latest/users/install/performance/#mutagen
# fail_on_hook_fail: False
# Decide whether 'ddev start' should be interrupted by a failing hook
# host_https_port: "59002"
# The host port binding for https can be explicitly specified. It is
# dynamic unless otherwise specified.
# This is not used by most people, most people use the *router* instead
# of the localhost port.
# host_webserver_port: "59001"
# The host port binding for the ddev-webserver can be explicitly specified. It is
# dynamic unless otherwise specified.
# This is not used by most people, most people use the *router* instead
# of the localhost port.
# host_db_port: "59002"
# The host port binding for the ddev-dbserver can be explicitly specified. It is dynamic
# unless explicitly specified.
# phpmyadmin_port: "8036"
# phpmyadmin_https_port: "8037"
# The PHPMyAdmin ports can be changed from the default 8036 and 8037
# host_phpmyadmin_port: "8036"
# The phpmyadmin (dba) port is not normally bound on the host at all, instead being routed
# through ddev-router, but it can be specified and bound.
# mailhog_port: "8025"
# mailhog_https_port: "8026"
# The MailHog ports can be changed from the default 8025 and 8026
# host_mailhog_port: "8025"
# The mailhog port is not normally bound on the host at all, instead being routed
# through ddev-router, but it can be bound directly to localhost if specified here.
# webimage_extra_packages: [php7.4-tidy, php-bcmath]
# Extra Debian packages that are needed in the webimage can be added here
# dbimage_extra_packages: [telnet,netcat]
# Extra Debian packages that are needed in the dbimage can be added here
# use_dns_when_possible: true
# If the host has internet access and the domain configured can
# successfully be looked up, DNS will be used for hostname resolution
# instead of editing /etc/hosts
# Defaults to true
# project_tld: ddev.site
# The top-level domain used for project URLs
# The default "ddev.site" allows DNS lookup via a wildcard
# If you prefer you can change this to "ddev.local" to preserve
# pre-v1.9 behavior.
# ngrok_args: --basic-auth username:pass1234
# Provide extra flags to the "ngrok http" command, see
# https://ngrok.com/docs#http or run "ngrok http -h"
# disable_settings_management: false
# If true, ddev will not create CMS-specific settings files like
# Drupal's settings.php/settings.ddev.php or TYPO3's AdditionalConfiguration.php
# In this case the user must provide all such settings.
# You can inject environment variables into the web container with:
# web_environment:
# - SOMEENV=somevalue
# - SOMEOTHERENV=someothervalue
# no_project_mount: false
# (Experimental) If true, ddev will not mount the project into the web container;
# the user is responsible for mounting it manually or via a script.
# This is to enable experimentation with alternate file mounting strategies.
# For advanced users only!
# bind_all_interfaces: false
# If true, host ports will be bound on all network interfaces,
# not just the localhost interface. This means that ports
# will be available on the local network if the host firewall
# allows it.
# default_container_timeout: 120
# The default time that ddev waits for all containers to become ready can be increased from
# the default 120. This helps in importing huge databases, for example.
#web_extra_exposed_ports:
#- name: nodejs
# container_port: 3000
# http_port: 2999
# https_port: 3000
#- name: something
# container_port: 4000
# https_port: 4000
# http_port: 3999
# Allows a set of extra ports to be exposed via ddev-router
# The port behavior on the ddev-webserver must be arranged separately, for example
# using web_extra_daemons.
# For example, with a web app on port 3000 inside the container, this config would
# expose that web app on https://<project>.ddev.site:9999 and http://<project>.ddev.site:9998
# web_extra_exposed_ports:
# - container_port: 3000
# http_port: 9998
# https_port: 9999
#web_extra_daemons:
#- name: "http-1"
# command: "/var/www/html/node_modules/.bin/http-server -p 3000"
# directory: /var/www/html
#- name: "http-2"
# command: "/var/www/html/node_modules/.bin/http-server /var/www/html/sub -p 3000"
# directory: /var/www/html
# override_config: false
# By default, config.*.yaml files are *merged* into the configuration
# But this means that some things can't be overridden
# For example, if you have 'nfs_mount_enabled: true'' you can't override it with a merge
# and you can't erase existing hooks or all environment variables.
# However, with "override_config: true" in a particular config.*.yaml file,
# 'nfs_mount_enabled: false' can override the existing values, and
# hooks:
# post-start: []
# or
# web_environment: []
# or
# additional_hostnames: []
# can have their intended affect. 'override_config' affects only behavior of the
# config.*.yaml file it exists in.
# Many ddev commands can be extended to run tasks before or after the
# ddev command is executed, for example "post-start", "post-import-db",
# "pre-composer", "post-composer"
# See https://ddev.readthedocs.io/en/stable/users/extend/custom-commands/ for more
# information on the commands that can be extended and the tasks you can define
# for them. Example:
#hooks:
# post-import-db:
# - exec: drush cr
# - exec: drush updb

17
.editorconfig 100644
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

61
.gitattributes vendored 100644
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

43
.gitignore vendored 100644
View File

@ -0,0 +1,43 @@
# Ignore directories generated by Composer
/drush/contrib/
/vendor/
/web/core/
/web/modules/contrib/
/web/themes/contrib/
/web/profiles/contrib/
/web/libraries/
/web/vendor/
# Ignore sensitive information
/web/sites/*/settings.local.php
# Ignore Drupal's file directory
/web/sites/*/files
/web/sites/*/files/
# Ignore SimpleTest multi-site environment.
/web/sites/simpletest
# Ignore files generated by PhpStorm
/.idea/
# Ignore .env files as they are personal
/.env
# Ignoriramo podatke kot so DB dumpi
/data/*
/.csslintrc
/.eslintignore
/.eslintrc.json
/.ht.router.php
/.htaccess
/INSTALL.txt
/README.txt
/autoload.php
/example.gitignore
/index.php
/robots.txt
/update.php
/web.config
/.drush

95
composer.json 100644
View File

@ -0,0 +1,95 @@
{
"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"
},
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"require": {
"composer/installers": "^2.0",
"drupal/bootstrap_datetime_picker": "^4.0@alpha",
"drupal/color_field": "^3.0",
"drupal/core-composer-scaffold": "^10.0",
"drupal/core-project-message": "^10.0",
"drupal/core-recommended": "^10.0",
"drupal/gin": "^3.0@RC",
"drupal/libraries": "^4.0",
"drupal/linked_field": "^1.5",
"drupal/pathauto": "^1.11",
"drupal/quick_node_clone": "^1.16",
"drupal/single_datetime": "^2.0@beta",
"drush/drush": "^11.5",
"oomphinc/composer-installers-extender": "^2.0",
"zodiacmedia/drupal-libraries-installer": "^1.6"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"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,
"oomphinc/composer-installers-extender": 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"
]
},
"installer-types": ["bower-asset", "npm-asset"],
"installer-name": "jquery-datetimepicker",
"drupal-libraries": {
"datetimepicker": "https://github.com/xdan/datetimepicker/archive/2.5.20.zip"
}
}
}

6644
composer.lock generated 100644

File diff suppressed because it is too large Load Diff

View 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>

View File

@ -0,0 +1,4 @@
_core:
default_config_hash: fUksROt4FfkAU9BV4hV2XvhTBSS2nTNrZS4U7S-tKrs
langcode: sl
interval: 10800

View File

@ -0,0 +1,27 @@
uuid: 522aa805-2fe4-494b-bf7d-a0dee70234b6
langcode: sl
status: true
dependencies:
config:
- system.menu.account
module:
- system
theme:
- cirkovizija
_core:
default_config_hash: gmxYWWHmgbe0Pnv8y48ZLSLH5mEHejOjAP6RLxUfdzU
id: cirkovizija_account_menu
theme: cirkovizija
region: secondary_menu
weight: -4
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: { }

View File

@ -0,0 +1,22 @@
uuid: 459e233c-7a14-4571-9141-834c0b60ee32
langcode: sl
status: false
dependencies:
module:
- system
theme:
- cirkovizija
_core:
default_config_hash: VhBzWb7lMRtIOg9G7VSw_0uopi-7zXeHq4vXqqV1HFE
id: cirkovizija_breadcrumbs
theme: cirkovizija
region: breadcrumb
weight: 0
provider: null
plugin: system_breadcrumb_block
settings:
id: system_breadcrumb_block
label: Breadcrumbs
label_display: '0'
provider: system
visibility: { }

View File

@ -0,0 +1,22 @@
uuid: 96a5ce15-498e-42bc-8ae6-434a48c16ddc
langcode: sl
status: true
dependencies:
module:
- system
theme:
- cirkovizija
_core:
default_config_hash: erQSEZF2XUjNmgTl0uNRBzmg18ZGXwUcw2FhApoeuHk
id: cirkovizija_content
theme: cirkovizija
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: { }

View File

@ -0,0 +1,22 @@
uuid: 15c6ce9e-fe72-4036-b7a5-aa08713fe945
langcode: sl
status: true
dependencies:
module:
- help
theme:
- cirkovizija
_core:
default_config_hash: VfPFqqxfkomud5CO8DUijw85QIl9GIxh_nIxLOYESxg
id: cirkovizija_help
theme: cirkovizija
region: header
weight: 0
provider: null
plugin: help_block
settings:
id: help_block
label: Pomoč
label_display: '0'
provider: help
visibility: { }

View File

@ -0,0 +1,27 @@
uuid: 2f9bb111-5018-4b7e-a524-927cbc1f4121
langcode: sl
status: true
dependencies:
config:
- system.menu.main
module:
- system
theme:
- cirkovizija
_core:
default_config_hash: KWAiziL39uEzmOJEql_wbUP2RtqGceL3WM2CfxhMelE
id: cirkovizija_main_menu
theme: cirkovizija
region: primary_menu
weight: 0
provider: null
plugin: 'system_menu_block:main'
settings:
id: 'system_menu_block:main'
label: 'Main navigation'
label_display: '0'
provider: system
level: 1
depth: 2
expand_all_items: true
visibility: { }

View File

@ -0,0 +1,22 @@
uuid: 2459010b-2387-40c9-931b-bcab6213b474
langcode: sl
status: true
dependencies:
module:
- system
theme:
- cirkovizija
_core:
default_config_hash: BZ5tpW7H8X4PVGRm3MImTIHd2tN0eF7zOtp4SpRYUA0
id: cirkovizija_messages
theme: cirkovizija
region: header
weight: -5
provider: null
plugin: system_messages_block
settings:
id: system_messages_block
label: 'Status messages'
label_display: '0'
provider: system
visibility: { }

View File

@ -0,0 +1,20 @@
uuid: a13e966a-202d-4884-a9e1-cad0943d882e
langcode: sl
status: true
dependencies:
theme:
- cirkovizija
_core:
default_config_hash: 6aOgWsNTXjqrDm98TXSAjP6qd2nCijD1xw45MrnbK-Y
id: cirkovizija_page_title
theme: cirkovizija
region: header
weight: -5
provider: null
plugin: page_title_block
settings:
id: page_title_block
label: 'Page title'
label_display: '0'
provider: core
visibility: { }

View File

@ -0,0 +1,22 @@
uuid: fe51f35a-4d10-48bd-9644-e5511ef64160
langcode: sl
status: false
dependencies:
module:
- system
theme:
- cirkovizija
_core:
default_config_hash: eYL19CLDyinGTWYQfBD1DswWzglEotE_kHnHx3AxTXM
id: cirkovizija_powered
theme: cirkovizija
region: header
weight: 0
provider: null
plugin: system_powered_by_block
settings:
id: system_powered_by_block
label: 'Powered by Drupal'
label_display: '0'
provider: system
visibility: { }

View File

@ -0,0 +1,20 @@
uuid: 64b2bde2-3ebe-41d7-b205-2f08627efacf
langcode: sl
status: true
dependencies:
theme:
- cirkovizija
_core:
default_config_hash: Q9_2whdOj1YIomfvsIfopROW4FT_X5pY0DjdOiOaQ5U
id: cirkovizija_primary_admin_actions
theme: cirkovizija
region: header
weight: -5
provider: null
plugin: local_actions_block
settings:
id: local_actions_block
label: 'Primary admin actions'
label_display: '0'
provider: core
visibility: { }

View File

@ -0,0 +1,22 @@
uuid: a10b36f1-1e30-4716-ab94-bee8969c0816
langcode: sl
status: true
dependencies:
theme:
- cirkovizija
_core:
default_config_hash: nGE3EoPQQaQCuqTUtZgw0-KIzmrqdKDzdNQf2JyPUt4
id: cirkovizija_primary_local_tasks
theme: cirkovizija
region: header
weight: -4
provider: null
plugin: local_tasks_block
settings:
id: local_tasks_block
label: 'Primarni zavihki'
label_display: '0'
provider: core
primary: true
secondary: false
visibility: { }

View File

@ -0,0 +1,23 @@
uuid: 0d691f79-91bd-46a6-8bc2-0bc37516548d
langcode: sl
status: true
dependencies:
module:
- search
theme:
- cirkovizija
_core:
default_config_hash: yEBET0cqDbk8dkWzaJw-8CKft0961VBflsISoSR6Lj8
id: cirkovizija_search_form_narrow
theme: cirkovizija
region: primary_menu
weight: -4
provider: null
plugin: search_form_block
settings:
id: search_form_block
label: 'Search form (narrow)'
label_display: '0'
provider: search
page_id: ''
visibility: { }

View File

@ -0,0 +1,23 @@
uuid: 87371596-2efa-4389-88e3-65a3a6d17f59
langcode: sl
status: true
dependencies:
module:
- search
theme:
- cirkovizija
_core:
default_config_hash: imMyHD6LYci0gtXq56qr9ZKGHzbEG9uFydrN5EhKtSU
id: cirkovizija_search_form_wide
theme: cirkovizija
region: secondary_menu
weight: -5
provider: null
plugin: search_form_block
settings:
id: search_form_block
label: 'Search form (wide)'
label_display: '0'
provider: search
page_id: ''
visibility: { }

View File

@ -0,0 +1,22 @@
uuid: c513f627-fc96-489e-bfdc-6b626c969998
langcode: sl
status: true
dependencies:
theme:
- cirkovizija
_core:
default_config_hash: ydSxdq7R66I8UMC460rOzlfzvlUL4VRbdwc6z9DWaUI
id: cirkovizija_secondary_local_tasks
theme: cirkovizija
region: header
weight: -2
provider: null
plugin: local_tasks_block
settings:
id: local_tasks_block
label: 'Sekundarni zavihki'
label_display: '0'
provider: core
primary: false
secondary: true
visibility: { }

View File

@ -0,0 +1,25 @@
uuid: 3f08b1c9-f38a-46db-9f7a-f4a3df1fa78a
langcode: sl
status: true
dependencies:
module:
- system
theme:
- cirkovizija
_core:
default_config_hash: n_nlgjggHVfQt2H__zvLOKB2YtjPDbQ5tHijF9LE1aM
id: cirkovizija_site_branding
theme: cirkovizija
region: header
weight: 0
provider: null
plugin: system_branding_block
settings:
id: system_branding_block
label: 'Site branding'
label_display: '0'
provider: system
use_site_logo: true
use_site_name: true
use_site_slogan: false
visibility: { }

View File

@ -0,0 +1,23 @@
uuid: a75e70f3-8ea1-454a-a0ff-0bd30d7a9175
langcode: sl
status: true
dependencies:
module:
- node
theme:
- cirkovizija
_core:
default_config_hash: 0gq3VPg-_UM69FCCWurLFIrrnIjC2HLKhwo9iQNtcUo
id: cirkovizija_syndicate
theme: cirkovizija
region: header
weight: 0
provider: null
plugin: node_syndicate_block
settings:
id: node_syndicate_block
label: 'RSS izvor'
label_display: '0'
provider: node
block_count: 10
visibility: { }

View File

@ -0,0 +1,22 @@
uuid: 67235872-74c8-4bfc-861e-fc2c720ba036
langcode: sl
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: { }

View File

@ -0,0 +1,22 @@
uuid: a9b123e5-576a-48c3-9c52-52df2ce1960b
langcode: sl
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: { }

View File

@ -0,0 +1,22 @@
uuid: 5283897b-0031-486f-a8d4-500eaa1f7acc
langcode: sl
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: Pomoč
label_display: '0'
provider: help
visibility: { }

View File

@ -0,0 +1,20 @@
uuid: 5d744b32-4d9d-4e10-9886-2eca0de594a9
langcode: sl
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: { }

View File

@ -0,0 +1,22 @@
uuid: 1eb52b4b-f0d0-436a-9a9f-a8aa01b509a5
langcode: sl
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: { }

View File

@ -0,0 +1,20 @@
uuid: 598035fb-449d-43ea-af08-33dd0140c9e1
langcode: sl
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: { }

View File

@ -0,0 +1,22 @@
uuid: 93d33b7a-eb3b-4a60-8357-f08e71de6e67
langcode: sl
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: 'Primarni zavihki'
label_display: '0'
provider: core
primary: true
secondary: false
visibility: { }

View File

@ -0,0 +1,22 @@
uuid: 1ebd290b-11fa-4df1-91bd-786019301bc3
langcode: sl
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: 'Sekundarni zavihki'
label_display: '0'
provider: core
primary: false
secondary: true
visibility: { }

View File

@ -0,0 +1,22 @@
uuid: 244c2336-fd91-4ed5-8f27-40c9e68fd4df
langcode: sl
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: Breadcrumbs
label_display: '0'
provider: system
visibility: { }

View File

@ -0,0 +1,22 @@
uuid: 2b8f4280-b57a-4dc9-b683-0416f7e15515
langcode: sl
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: 'Main page content'
label_display: '0'
provider: system
visibility: { }

View File

@ -0,0 +1,22 @@
uuid: 02170fc6-8110-409f-a908-f6c4354c1c78
langcode: sl
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: Pomoč
label_display: '0'
provider: help
visibility: { }

View File

@ -0,0 +1,20 @@
uuid: d3bce79d-959e-46a2-92c8-89c555c861a8
langcode: sl
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: 'Primary admin actions'
label_display: '0'
provider: core
visibility: { }

View File

@ -0,0 +1,22 @@
uuid: 63d96166-f327-48ab-b63b-a442b7d9deab
langcode: sl
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: 'Status messages'
label_display: '0'
provider: system
visibility: { }

View File

@ -0,0 +1,20 @@
uuid: 948b03bf-b143-4341-9d4b-410757ace069
langcode: sl
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: 'Page title'
label_display: '0'
provider: core
visibility: { }

View File

@ -0,0 +1,22 @@
uuid: 6e174b97-61d4-4510-9788-f8169c2d4a7c
langcode: sl
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: 'Primarni zavihki'
label_display: '0'
provider: core
primary: true
secondary: false
visibility: { }

View File

@ -0,0 +1,22 @@
uuid: 62cc8373-04c7-438d-9538-e9ad6ca5407a
langcode: sl
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: 'Sekundarni zavihki'
label_display: '0'
provider: core
primary: false
secondary: true
visibility: { }

View File

@ -0,0 +1,27 @@
uuid: b0793aa3-96d2-4e40-97d2-6aefbfbfcc5b
langcode: sl
status: true
dependencies:
config:
- system.menu.account
module:
- system
theme:
- olivero
_core:
default_config_hash: gmxYWWHmgbe0Pnv8y48ZLSLH5mEHejOjAP6RLxUfdzU
id: olivero_account_menu
theme: olivero
region: secondary_menu
weight: -4
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: { }

View File

@ -0,0 +1,22 @@
uuid: 77f9aa70-671f-4d50-addc-ed5d9d02ad58
langcode: sl
status: false
dependencies:
module:
- system
theme:
- olivero
_core:
default_config_hash: VhBzWb7lMRtIOg9G7VSw_0uopi-7zXeHq4vXqqV1HFE
id: olivero_breadcrumbs
theme: olivero
region: breadcrumb
weight: 0
provider: null
plugin: system_breadcrumb_block
settings:
id: system_breadcrumb_block
label: Breadcrumbs
label_display: '0'
provider: system
visibility: { }

View File

@ -0,0 +1,22 @@
uuid: 719a81cf-4fb3-44c7-aac0-810c6ca6196c
langcode: sl
status: true
dependencies:
module:
- system
theme:
- olivero
_core:
default_config_hash: erQSEZF2XUjNmgTl0uNRBzmg18ZGXwUcw2FhApoeuHk
id: olivero_content
theme: olivero
region: content
weight: -9
provider: null
plugin: system_main_block
settings:
id: system_main_block
label: 'Main page content'
label_display: '0'
provider: system
visibility: { }

View File

@ -0,0 +1,22 @@
uuid: 3a67c4c9-b355-462d-904a-2ed726185a0f
langcode: sl
status: true
dependencies:
module:
- help
theme:
- olivero
_core:
default_config_hash: VfPFqqxfkomud5CO8DUijw85QIl9GIxh_nIxLOYESxg
id: olivero_help
theme: olivero
region: content_above
weight: 0
provider: null
plugin: help_block
settings:
id: help_block
label: Pomoč
label_display: '0'
provider: help
visibility: { }

View File

@ -0,0 +1,27 @@
uuid: f53ea26c-b76e-4f6b-8da5-4aad1eccf045
langcode: sl
status: true
dependencies:
config:
- system.menu.main
module:
- system
theme:
- olivero
_core:
default_config_hash: KWAiziL39uEzmOJEql_wbUP2RtqGceL3WM2CfxhMelE
id: olivero_main_menu
theme: olivero
region: primary_menu
weight: 0
provider: null
plugin: 'system_menu_block:main'
settings:
id: 'system_menu_block:main'
label: 'Glavna navigacija'
label_display: '0'
provider: system
level: 1
depth: 2
expand_all_items: true
visibility: { }

View File

@ -0,0 +1,22 @@
uuid: 74f7c5ab-5f1d-42f5-be6d-b4e800d51d10
langcode: sl
status: true
dependencies:
module:
- system
theme:
- olivero
_core:
default_config_hash: BZ5tpW7H8X4PVGRm3MImTIHd2tN0eF7zOtp4SpRYUA0
id: olivero_messages
theme: olivero
region: highlighted
weight: -5
provider: null
plugin: system_messages_block
settings:
id: system_messages_block
label: 'Status messages'
label_display: '0'
provider: system
visibility: { }

View File

@ -0,0 +1,20 @@
uuid: c26e3749-b968-4a81-8d8e-8a3c02e241d0
langcode: sl
status: true
dependencies:
theme:
- olivero
_core:
default_config_hash: 6aOgWsNTXjqrDm98TXSAjP6qd2nCijD1xw45MrnbK-Y
id: olivero_page_title
theme: olivero
region: content_above
weight: -5
provider: null
plugin: page_title_block
settings:
id: page_title_block
label: 'Page title'
label_display: '0'
provider: core
visibility: { }

View File

@ -0,0 +1,22 @@
uuid: 65c67b03-5dd8-4914-8b93-06d051c06c00
langcode: sl
status: false
dependencies:
module:
- system
theme:
- olivero
_core:
default_config_hash: eYL19CLDyinGTWYQfBD1DswWzglEotE_kHnHx3AxTXM
id: olivero_powered
theme: olivero
region: footer_bottom
weight: 0
provider: null
plugin: system_powered_by_block
settings:
id: system_powered_by_block
label: 'Powered by Drupal'
label_display: '0'
provider: system
visibility: { }

View File

@ -0,0 +1,20 @@
uuid: d2ed4892-20da-4aae-a7d9-ecd1b3ce1c4a
langcode: sl
status: true
dependencies:
theme:
- olivero
_core:
default_config_hash: Q9_2whdOj1YIomfvsIfopROW4FT_X5pY0DjdOiOaQ5U
id: olivero_primary_admin_actions
theme: olivero
region: highlighted
weight: -5
provider: null
plugin: local_actions_block
settings:
id: local_actions_block
label: 'Primary admin actions'
label_display: '0'
provider: core
visibility: { }

View File

@ -0,0 +1,22 @@
uuid: 0cff13a1-dcea-44ea-a735-2600a3472900
langcode: sl
status: true
dependencies:
theme:
- olivero
_core:
default_config_hash: nGE3EoPQQaQCuqTUtZgw0-KIzmrqdKDzdNQf2JyPUt4
id: olivero_primary_local_tasks
theme: olivero
region: highlighted
weight: -4
provider: null
plugin: local_tasks_block
settings:
id: local_tasks_block
label: 'Primarni zavihki'
label_display: '0'
provider: core
primary: true
secondary: false
visibility: { }

View File

@ -0,0 +1,23 @@
uuid: 9b74fc81-0adf-4401-8854-22aedff1725b
langcode: sl
status: true
dependencies:
module:
- search
theme:
- olivero
_core:
default_config_hash: yEBET0cqDbk8dkWzaJw-8CKft0961VBflsISoSR6Lj8
id: olivero_search_form_narrow
theme: olivero
region: primary_menu
weight: -4
provider: null
plugin: search_form_block
settings:
id: search_form_block
label: 'Search form (narrow)'
label_display: '0'
provider: search
page_id: ''
visibility: { }

View File

@ -0,0 +1,23 @@
uuid: 05067796-2794-4f56-ad47-ced56f91a1eb
langcode: sl
status: true
dependencies:
module:
- search
theme:
- olivero
_core:
default_config_hash: imMyHD6LYci0gtXq56qr9ZKGHzbEG9uFydrN5EhKtSU
id: olivero_search_form_wide
theme: olivero
region: secondary_menu
weight: -5
provider: null
plugin: search_form_block
settings:
id: search_form_block
label: 'Search form (wide)'
label_display: '0'
provider: search
page_id: ''
visibility: { }

View File

@ -0,0 +1,22 @@
uuid: 569823a4-accc-4984-a97c-beddab7b8365
langcode: sl
status: true
dependencies:
theme:
- olivero
_core:
default_config_hash: ydSxdq7R66I8UMC460rOzlfzvlUL4VRbdwc6z9DWaUI
id: olivero_secondary_local_tasks
theme: olivero
region: highlighted
weight: -2
provider: null
plugin: local_tasks_block
settings:
id: local_tasks_block
label: 'Sekundarni zavihki'
label_display: '0'
provider: core
primary: false
secondary: true
visibility: { }

View File

@ -0,0 +1,25 @@
uuid: eaa9779f-98b6-46f4-b682-9066dafb0798
langcode: sl
status: true
dependencies:
module:
- system
theme:
- olivero
_core:
default_config_hash: n_nlgjggHVfQt2H__zvLOKB2YtjPDbQ5tHijF9LE1aM
id: olivero_site_branding
theme: olivero
region: header
weight: 0
provider: null
plugin: system_branding_block
settings:
id: system_branding_block
label: 'Site branding'
label_display: '0'
provider: system
use_site_logo: true
use_site_name: true
use_site_slogan: false
visibility: { }

View File

@ -0,0 +1,23 @@
uuid: 660f7a9b-27c6-4e53-bb64-6eb5e0ceb8a2
langcode: sl
status: true
dependencies:
module:
- node
theme:
- olivero
_core:
default_config_hash: 0gq3VPg-_UM69FCCWurLFIrrnIjC2HLKhwo9iQNtcUo
id: olivero_syndicate
theme: olivero
region: social
weight: 0
provider: null
plugin: node_syndicate_block
settings:
id: node_syndicate_block
label: 'RSS izvor'
label_display: '0'
provider: node
block_count: 10
visibility: { }

View File

@ -0,0 +1,27 @@
uuid: bb680425-7f44-4760-9670-3228eefa9179
langcode: sl
status: true
dependencies:
config:
- system.menu.account
module:
- system
theme:
- test
_core:
default_config_hash: gmxYWWHmgbe0Pnv8y48ZLSLH5mEHejOjAP6RLxUfdzU
id: test_account_menu
theme: test
region: secondary_menu
weight: -4
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: { }

View File

@ -0,0 +1,22 @@
uuid: 7f6a5ed0-a656-456b-bfc0-d4830af3a25d
langcode: sl
status: false
dependencies:
module:
- system
theme:
- test
_core:
default_config_hash: VhBzWb7lMRtIOg9G7VSw_0uopi-7zXeHq4vXqqV1HFE
id: test_breadcrumbs
theme: test
region: breadcrumb
weight: 0
provider: null
plugin: system_breadcrumb_block
settings:
id: system_breadcrumb_block
label: Breadcrumbs
label_display: '0'
provider: system
visibility: { }

View File

@ -0,0 +1,22 @@
uuid: a9b00079-64bd-4cc0-97a9-6c20b468a891
langcode: sl
status: true
dependencies:
module:
- system
theme:
- test
_core:
default_config_hash: erQSEZF2XUjNmgTl0uNRBzmg18ZGXwUcw2FhApoeuHk
id: test_content
theme: test
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: { }

View File

@ -0,0 +1,22 @@
uuid: 3c34c30c-2e80-43cb-8f47-926779e2921f
langcode: sl
status: true
dependencies:
module:
- help
theme:
- test
_core:
default_config_hash: VfPFqqxfkomud5CO8DUijw85QIl9GIxh_nIxLOYESxg
id: test_help
theme: test
region: header
weight: 0
provider: null
plugin: help_block
settings:
id: help_block
label: Pomoč
label_display: '0'
provider: help
visibility: { }

View File

@ -0,0 +1,27 @@
uuid: 413ceefd-879d-4526-8853-721578e98e2f
langcode: sl
status: true
dependencies:
config:
- system.menu.main
module:
- system
theme:
- test
_core:
default_config_hash: KWAiziL39uEzmOJEql_wbUP2RtqGceL3WM2CfxhMelE
id: test_main_menu
theme: test
region: primary_menu
weight: 0
provider: null
plugin: 'system_menu_block:main'
settings:
id: 'system_menu_block:main'
label: 'Main navigation'
label_display: '0'
provider: system
level: 1
depth: 2
expand_all_items: true
visibility: { }

View File

@ -0,0 +1,22 @@
uuid: d8fea83f-9718-4eff-8d96-f24ff4a92da0
langcode: sl
status: true
dependencies:
module:
- system
theme:
- test
_core:
default_config_hash: BZ5tpW7H8X4PVGRm3MImTIHd2tN0eF7zOtp4SpRYUA0
id: test_messages
theme: test
region: header
weight: -5
provider: null
plugin: system_messages_block
settings:
id: system_messages_block
label: 'Status messages'
label_display: '0'
provider: system
visibility: { }

View File

@ -0,0 +1,20 @@
uuid: 40809f4a-b9af-4897-86c0-d7a63b5050a9
langcode: sl
status: true
dependencies:
theme:
- test
_core:
default_config_hash: 6aOgWsNTXjqrDm98TXSAjP6qd2nCijD1xw45MrnbK-Y
id: test_page_title
theme: test
region: header
weight: -5
provider: null
plugin: page_title_block
settings:
id: page_title_block
label: 'Page title'
label_display: '0'
provider: core
visibility: { }

View File

@ -0,0 +1,22 @@
uuid: 2914a8a9-bfeb-4448-bac2-54f8cac3229c
langcode: sl
status: false
dependencies:
module:
- system
theme:
- test
_core:
default_config_hash: eYL19CLDyinGTWYQfBD1DswWzglEotE_kHnHx3AxTXM
id: test_powered
theme: test
region: header
weight: 0
provider: null
plugin: system_powered_by_block
settings:
id: system_powered_by_block
label: 'Powered by Drupal'
label_display: '0'
provider: system
visibility: { }

View File

@ -0,0 +1,20 @@
uuid: 5edbf312-8432-453e-82c9-ac551431776c
langcode: sl
status: true
dependencies:
theme:
- test
_core:
default_config_hash: Q9_2whdOj1YIomfvsIfopROW4FT_X5pY0DjdOiOaQ5U
id: test_primary_admin_actions
theme: test
region: header
weight: -5
provider: null
plugin: local_actions_block
settings:
id: local_actions_block
label: 'Primary admin actions'
label_display: '0'
provider: core
visibility: { }

View File

@ -0,0 +1,22 @@
uuid: 97e9d4fa-5ed2-44ad-bcbb-9cbed519f6de
langcode: sl
status: true
dependencies:
theme:
- test
_core:
default_config_hash: nGE3EoPQQaQCuqTUtZgw0-KIzmrqdKDzdNQf2JyPUt4
id: test_primary_local_tasks
theme: test
region: header
weight: -4
provider: null
plugin: local_tasks_block
settings:
id: local_tasks_block
label: 'Primarni zavihki'
label_display: '0'
provider: core
primary: true
secondary: false
visibility: { }

View File

@ -0,0 +1,23 @@
uuid: 37f5d1f1-a4c5-44c3-8306-c9a99cd46a27
langcode: sl
status: true
dependencies:
module:
- search
theme:
- test
_core:
default_config_hash: yEBET0cqDbk8dkWzaJw-8CKft0961VBflsISoSR6Lj8
id: test_search_form_narrow
theme: test
region: primary_menu
weight: -4
provider: null
plugin: search_form_block
settings:
id: search_form_block
label: 'Search form (narrow)'
label_display: '0'
provider: search
page_id: ''
visibility: { }

View File

@ -0,0 +1,23 @@
uuid: 076df3e3-8384-425c-bfe8-017eb317f118
langcode: sl
status: true
dependencies:
module:
- search
theme:
- test
_core:
default_config_hash: imMyHD6LYci0gtXq56qr9ZKGHzbEG9uFydrN5EhKtSU
id: test_search_form_wide
theme: test
region: secondary_menu
weight: -5
provider: null
plugin: search_form_block
settings:
id: search_form_block
label: 'Search form (wide)'
label_display: '0'
provider: search
page_id: ''
visibility: { }

View File

@ -0,0 +1,22 @@
uuid: 1415b5fa-8f5a-4ce1-be18-107568925c8d
langcode: sl
status: true
dependencies:
theme:
- test
_core:
default_config_hash: ydSxdq7R66I8UMC460rOzlfzvlUL4VRbdwc6z9DWaUI
id: test_secondary_local_tasks
theme: test
region: header
weight: -2
provider: null
plugin: local_tasks_block
settings:
id: local_tasks_block
label: 'Sekundarni zavihki'
label_display: '0'
provider: core
primary: false
secondary: true
visibility: { }

View File

@ -0,0 +1,25 @@
uuid: 9593192e-3f14-4318-8a4e-d13646a901f3
langcode: sl
status: true
dependencies:
module:
- system
theme:
- test
_core:
default_config_hash: n_nlgjggHVfQt2H__zvLOKB2YtjPDbQ5tHijF9LE1aM
id: test_site_branding
theme: test
region: header
weight: 0
provider: null
plugin: system_branding_block
settings:
id: system_branding_block
label: 'Site branding'
label_display: '0'
provider: system
use_site_logo: true
use_site_name: true
use_site_slogan: false
visibility: { }

View File

@ -0,0 +1,23 @@
uuid: cddad525-205e-46da-b453-27d28469524d
langcode: sl
status: true
dependencies:
module:
- node
theme:
- test
_core:
default_config_hash: 0gq3VPg-_UM69FCCWurLFIrrnIjC2HLKhwo9iQNtcUo
id: test_syndicate
theme: test
region: header
weight: 0
provider: null
plugin: node_syndicate_block
settings:
id: node_syndicate_block
label: 'RSS izvor'
label_display: '0'
provider: node
block_count: 10
visibility: { }

View File

@ -0,0 +1,29 @@
uuid: ce822d5c-004d-4bbe-87f7-4c69ac3b179b
langcode: sl
status: true
dependencies:
config:
- views.view.kdo
module:
- system
- views
theme:
- olivero
id: views_block__kdo_block_1
theme: olivero
region: content
weight: -8
provider: null
plugin: 'views_block:kdo-block_1'
settings:
id: 'views_block:kdo-block_1'
label: ''
label_display: '0'
provider: views
views_label: ''
items_per_page: none
visibility:
request_path:
id: request_path
negate: false
pages: /kdo

View File

@ -0,0 +1,29 @@
uuid: c92c252e-3845-4aa2-adf0-a0c1a08e34c4
langcode: sl
status: true
dependencies:
config:
- views.view.prihajajoci_dogodki
module:
- system
- views
theme:
- olivero
id: views_block__prihajajoci_dogodki_block_1
theme: olivero
region: sidebar
weight: -8
provider: null
plugin: 'views_block:prihajajoci_dogodki-block_1'
settings:
id: 'views_block:prihajajoci_dogodki-block_1'
label: ''
label_display: visible
provider: views
views_label: ''
items_per_page: '3'
visibility:
request_path:
id: request_path
negate: false
pages: '<front>'

View File

@ -0,0 +1,29 @@
uuid: e08c931a-ee52-485e-96b4-60fc5ef1abd9
langcode: sl
status: true
dependencies:
config:
- views.view.prihajajoci_dogodki
module:
- system
- views
theme:
- olivero
id: views_block__prihajajoci_dogodki_block_2
theme: olivero
region: content
weight: 0
provider: null
plugin: 'views_block:prihajajoci_dogodki-block_2'
settings:
id: 'views_block:prihajajoci_dogodki-block_2'
label: ''
label_display: visible
provider: views
views_label: ''
items_per_page: '48'
visibility:
request_path:
id: request_path
negate: false
pages: /dogodki

View File

@ -0,0 +1,10 @@
uuid: 83a9a6ce-0ad6-44ac-ae31-ca6fe256e8c9
langcode: sl
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.'

View File

@ -0,0 +1,35 @@
_core:
default_config_hash: 82IcmRqpBmy1evXJ62l9T9-embODAwKCeTfnB8d4eMw
langcode: sl
icon_type: fontawesome
use_cdn: true
display_icons_time: 'fa-solid fa-clock'
display_icons_date: 'fa-solid fa-calendar'
display_icons_up: 'fa-solid fa-arrow-up'
display_icons_down: 'fa-solid fa-arrow-down'
display_icons_previous: 'fa-solid fa-chevron-left'
display_icons_next: 'fa-solid fa-chevron-right'
display_icons_today: 'fa-solid fa-calendar-check'
display_icons_clear: 'fa-solid fa-trash'
display_icons_close: 'fa-solid fa-xmark'
display_sideBySide: false
display_calendarWeeks: false
display_viewMode: calendar
display_toolbarPlacement: bottom
display_keepOpen: false
display_buttons_today: false
display_buttons_clear: false
display_buttons_close: false
display_components_calendar: true
display_components_date: true
display_components_month: true
display_components_year: true
display_components_decades: true
display_components_clock: true
display_components_hours: true
display_components_minutes: true
display_components_seconds: false
display_inline: false
display_theme: auto
hourCycle: undefined
language: en

View File

@ -0,0 +1,3 @@
third_party_settings:
shortcut:
module_link: true

View File

@ -0,0 +1,4 @@
_core:
default_config_hash: YNUW2Ij5uE7a4oaXp3i_2lvaFdYM1zNKPPfnEjB0jEc
langcode: sl
log_ip_addresses: false

View File

@ -0,0 +1,10 @@
uuid: d06c8648-815b-4d0d-85d9-365eefcb41cf
langcode: sl
status: true
dependencies: { }
_core:
default_config_hash: bqZsN31T2n0UjcbyCpOPi9D2iO0sAOHR7FnEs9qMvaA
id: comment
label: 'Default comments'
target_entity_type_id: node
description: 'Allows commenting on content'

View File

@ -0,0 +1,14 @@
uuid: 0c2dd2e1-ce16-411a-912a-153e7df35d05
langcode: sl
status: true
dependencies: { }
_core:
default_config_hash: vymHlgJy26BuI5GGj9-IXjwR3dRC5C0tij4BpWJnoqw
id: feedback
label: 'Website feedback'
recipients:
- jurij@kompot.si
reply: ''
weight: 0
message: 'Vaše sporočilo je bilo poslano.'
redirect: ''

View File

@ -0,0 +1,13 @@
uuid: 43409841-ccdf-447a-84dc-2b536218c244
langcode: sl
status: true
dependencies: { }
_core:
default_config_hash: jonvgt3CkUM2eMLTFwWfHileWWDC4YtXCuIlCahTk_I
id: personal
label: 'Osebni obrazec za kontakt'
recipients: { }
reply: ''
weight: 0
message: 'Vaše sporočilo je bilo poslano.'
redirect: ''

View File

@ -0,0 +1,8 @@
_core:
default_config_hash: U69DBeuvXuNVOC15rVNaBjDPK2fWFbo9v4takdYSSO8
langcode: sl
default_form: feedback
flood:
limit: 5
interval: 3600
user_default_enabled: true

View File

@ -0,0 +1,24 @@
uuid: 34245512-0283-4ad0-b01e-8b570ea5aa9f
langcode: sl
status: true
dependencies:
config:
- node.type.page
_core:
default_config_hash: fPUEnm4T5zfZRr3ttDUqq7yCDd2uW3clWD-pvos4tlQ
id: node.page.promote
field_name: promote
entity_type: node
bundle: page
label: 'Prikaži na prvi strani'
description: ''
required: false
translatable: false
default_value:
-
value: 0
default_value_callback: ''
settings:
on_label: 'On'
off_label: 'Off'
field_type: boolean

View File

@ -0,0 +1,10 @@
uuid: 4c87d7da-d630-4826-89d9-b8c7fb679211
langcode: sl
status: true
dependencies: { }
_core:
default_config_hash: 7klS5IWXrwzVaPpYZFAs6wcx8U2FF1X73OfrtTsvuvE
id: fallback
label: 'Fallback date format'
locked: true
pattern: 'D, m/d/Y - H:i'

View File

@ -0,0 +1,10 @@
uuid: bb01d089-1abd-481e-8cf2-1d3ff566ff27
langcode: sl
status: true
dependencies: { }
_core:
default_config_hash: EOQltUQPmgc6UQ2rcJ4Xi_leCEJj5ui0TR-12duS-Tk
id: html_date
label: 'HTML Date'
locked: true
pattern: Y-m-d

View File

@ -0,0 +1,10 @@
uuid: cfa887bc-ecb3-4080-93de-a3f912f146c4
langcode: sl
status: true
dependencies: { }
_core:
default_config_hash: jxfClwZIRXIdcvMrE--WkcZxDGUVoOIE3Sm2NRZlFuE
id: html_datetime
label: 'HTML Datetime'
locked: true
pattern: 'Y-m-d\TH:i:sO'

View File

@ -0,0 +1,10 @@
uuid: a166f424-974c-490e-8812-ff3b7fd7b6ae
langcode: sl
status: true
dependencies: { }
_core:
default_config_hash: Z7KuCUwM_WdTNvLcoltuX3_8d-s-8FZkTN6KgNwF0eM
id: html_month
label: 'HTML Month'
locked: true
pattern: Y-m

View File

@ -0,0 +1,10 @@
uuid: ee07c2f8-844a-4a68-9017-b04ca0a74e73
langcode: sl
status: true
dependencies: { }
_core:
default_config_hash: M7yqicYkU36hRy5p9drAaGBBihhUD1OyujFrAaQ93ZE
id: html_time
label: 'HTML Time'
locked: true
pattern: 'H:i:s'

View File

@ -0,0 +1,10 @@
uuid: 18b2e07d-7ab4-4e20-8e09-fe4184099e9b
langcode: sl
status: true
dependencies: { }
_core:
default_config_hash: wKD4WsoV_wFgv2vgI4mcAAFSIzrye17ykzdwrnApkfY
id: html_week
label: 'HTML Week'
locked: true
pattern: Y-\WW

View File

@ -0,0 +1,10 @@
uuid: 44ad1667-8c19-4632-a5a9-0d6316f2c18f
langcode: sl
status: true
dependencies: { }
_core:
default_config_hash: OjekiQuX9RbVQ2_8jOHBL94RgYLePqX7wpfNGgcQzrk
id: html_year
label: 'HTML Year'
locked: true
pattern: 'Y'

View File

@ -0,0 +1,10 @@
uuid: 39283e4f-d8ab-4a8b-a255-d3800d2ab2f2
langcode: sl
status: true
dependencies: { }
_core:
default_config_hash: 5VpawMrKPEPCkoO4YpPa0TDFO2dgiIHfTziJtwlmUxc
id: html_yearless_date
label: 'HTML Yearless date'
locked: true
pattern: m-d

View File

@ -0,0 +1,10 @@
uuid: 6430f192-b481-4eed-8506-db0cf6fb8edf
langcode: sl
status: true
dependencies: { }
_core:
default_config_hash: og8sWXhBuHbLMw3CoiBEZjgqSyhFBFmcbUW_wLcfNbo
id: long
label: 'Default long date'
locked: false
pattern: 'l, F j, Y - H:i'

View File

@ -0,0 +1,10 @@
uuid: 2abacaac-a5eb-407e-91b9-b3b1f6e86d0d
langcode: sl
status: true
dependencies: { }
_core:
default_config_hash: nzL5d024NjXIX_8TlT6uFAu973lmfkmHklJC-2i9rAE
id: medium
label: 'Default medium date'
locked: false
pattern: 'D, d. m. Y - H.i'

View File

@ -0,0 +1,13 @@
uuid: d9a965d0-fc17-44f8-ba23-fb3beaf24c48
langcode: sl
status: true
dependencies:
enforced:
theme:
- olivero
_core:
default_config_hash: Mt6cmxUbDZ9XxD6p25WQ8tj3_JcX8ylfcddwZc8gcAE
id: olivero_medium
label: 'Olivero Medium'
locked: false
pattern: 'j F, Y'

View File

@ -0,0 +1,10 @@
uuid: 7a4d3d65-8cc7-4ee4-9073-d4bdf00dc6fc
langcode: sl
status: true
dependencies: { }
_core:
default_config_hash: AlzeyytA8InBgxIG9H2UDJYs3CG98Zj6yRsDKmlbZwA
id: short
label: 'Default short date'
locked: false
pattern: 'm/d/Y - H:i'

View File

@ -0,0 +1,42 @@
uuid: 6fb5f2de-7376-4375-8027-c0758c41d808
langcode: sl
status: true
dependencies:
config:
- block_content.type.basic
- field.field.block_content.basic.body
module:
- text
_core:
default_config_hash: jAps3FCxvKecABS_tgExbhCZrBLQB3bNPWw18WjE3ss
id: block_content.basic.default
targetEntityType: block_content
bundle: basic
mode: default
content:
body:
type: text_textarea_with_summary
weight: -4
region: content
settings:
rows: 9
summary_rows: 3
placeholder: ''
show_summary: false
third_party_settings: { }
info:
type: string_textfield
weight: -5
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
langcode:
type: language_select
weight: 2
region: content
settings:
include_locked: true
third_party_settings: { }
hidden: { }

View File

@ -0,0 +1,43 @@
uuid: 0036541f-6a4f-44ce-ae25-78f5959caf88
langcode: sl
status: true
dependencies:
config:
- comment.type.comment
- field.field.comment.comment.comment_body
module:
- text
_core:
default_config_hash: I0Pa0aQvT_jawlPo9oz4FE3h_ickc55dYKTPl6gILes
id: comment.comment.default
targetEntityType: comment
bundle: comment
mode: default
content:
author:
weight: -2
region: content
comment_body:
type: text_textarea
weight: 11
region: content
settings:
rows: 5
placeholder: ''
third_party_settings: { }
langcode:
type: language_select
weight: 2
region: content
settings:
include_locked: true
third_party_settings: { }
subject:
type: string_textfield
weight: 10
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
hidden: { }

View File

@ -0,0 +1,116 @@
uuid: 0d3fcfab-eb07-4bcf-ba99-582f19a2af18
langcode: sl
status: true
dependencies:
config:
- field.field.node.article.body
- field.field.node.article.comment
- field.field.node.article.field_image
- field.field.node.article.field_tags
- image.style.thumbnail
- node.type.article
module:
- comment
- image
- path
- text
_core:
default_config_hash: ewbd6G2uX456-bgwseM2Q-KQG3RkASoyHmTh-XR3oLU
id: node.article.default
targetEntityType: node
bundle: article
mode: default
content:
body:
type: text_textarea_with_summary
weight: 2
region: content
settings:
rows: 9
summary_rows: 3
placeholder: ''
show_summary: false
third_party_settings: { }
comment:
type: comment_default
weight: 20
region: content
settings: { }
third_party_settings: { }
created:
type: datetime_timestamp
weight: 10
region: content
settings: { }
third_party_settings: { }
field_image:
type: image_image
weight: 1
region: content
settings:
progress_indicator: throbber
preview_image_style: thumbnail
third_party_settings: { }
field_tags:
type: entity_reference_autocomplete_tags
weight: 3
region: content
settings:
match_operator: CONTAINS
match_limit: 10
size: 60
placeholder: ''
third_party_settings: { }
langcode:
type: language_select
weight: 2
region: content
settings:
include_locked: true
third_party_settings: { }
path:
type: path
weight: 30
region: content
settings: { }
third_party_settings: { }
promote:
type: boolean_checkbox
weight: 15
region: content
settings:
display_label: true
third_party_settings: { }
status:
type: boolean_checkbox
weight: 120
region: content
settings:
display_label: true
third_party_settings: { }
sticky:
type: boolean_checkbox
weight: 16
region: content
settings:
display_label: true
third_party_settings: { }
title:
type: string_textfield
weight: 0
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
uid:
type: entity_reference_autocomplete
weight: 5
region: content
settings:
match_operator: CONTAINS
match_limit: 10
size: 60
placeholder: ''
third_party_settings: { }
hidden: { }

View File

@ -0,0 +1,127 @@
uuid: 34f4c073-a288-4bb7-acc1-a3d71c8b5e17
langcode: sl
status: true
dependencies:
config:
- field.field.node.dogodek.body
- field.field.node.dogodek.field_konec
- field.field.node.dogodek.field_slika
- field.field.node.dogodek.field_tip_dogodka
- field.field.node.dogodek.field_zacetek
- image.style.thumbnail
- node.type.dogodek
module:
- datetime
- image
- path
- single_datetime
- text
id: node.dogodek.default
targetEntityType: node
bundle: dogodek
mode: default
content:
body:
type: text_textarea_with_summary
weight: 7
region: content
settings:
rows: 9
summary_rows: 3
placeholder: ''
show_summary: false
third_party_settings: { }
created:
type: single_date_time_timestamp_widget
weight: 10
region: content
settings:
hour_format: 24h
allow_seconds: false
allow_times: '15'
allowed_hours: ''
disable_days: { }
exclude_date: ''
inline: false
mask: false
datetimepicker_theme: default
start_date: ''
min_date: ''
max_date: ''
year_start: ''
year_end: ''
allow_blank: false
third_party_settings: { }
field_konec:
type: datetime_default
weight: 6
region: content
settings: { }
third_party_settings: { }
field_slika:
type: image_image
weight: 3
region: content
settings:
progress_indicator: throbber
preview_image_style: thumbnail
third_party_settings: { }
field_tip_dogodka:
type: options_buttons
weight: 4
region: content
settings: { }
third_party_settings: { }
field_zacetek:
type: datetime_default
weight: 5
region: content
settings: { }
third_party_settings: { }
langcode:
type: language_select
weight: 2
region: content
settings:
include_locked: true
third_party_settings: { }
path:
type: path
weight: 8
region: content
settings: { }
third_party_settings: { }
promote:
type: boolean_checkbox
weight: 11
region: content
settings:
display_label: true
third_party_settings: { }
status:
type: boolean_checkbox
weight: 0
region: content
settings:
display_label: true
third_party_settings: { }
title:
type: string_textfield
weight: 1
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
uid:
type: entity_reference_autocomplete
weight: 9
region: content
settings:
match_operator: CONTAINS
match_limit: 10
size: 60
placeholder: ''
third_party_settings: { }
hidden:
sticky: true

View File

@ -0,0 +1,93 @@
uuid: 3b42039c-6be6-46f6-8e56-02f852368e3c
langcode: sl
status: true
dependencies:
config:
- field.field.node.page.body
- field.field.node.page.field_ozadje
- field.field.node.page.field_slika
- image.style.thumbnail
- node.type.page
module:
- color_field
- image
- path
- text
_core:
default_config_hash: SfpLhPExzvR0MgFp0Wp7CrmgEnhcqQ-fXIWFhbf4ue0
id: node.page.default
targetEntityType: node
bundle: page
mode: default
content:
body:
type: text_textarea_with_summary
weight: 5
region: content
settings:
rows: 9
summary_rows: 3
placeholder: ''
show_summary: false
third_party_settings: { }
created:
type: datetime_timestamp
weight: 2
region: content
settings: { }
third_party_settings: { }
field_ozadje:
type: color_field_widget_html5
weight: 4
region: content
settings: { }
third_party_settings: { }
field_slika:
type: image_image
weight: 3
region: content
settings:
progress_indicator: throbber
preview_image_style: thumbnail
third_party_settings: { }
langcode:
type: language_select
weight: 7
region: content
settings:
include_locked: true
third_party_settings: { }
path:
type: path
weight: 8
region: content
settings: { }
third_party_settings: { }
status:
type: boolean_checkbox
weight: 0
region: content
settings:
display_label: true
third_party_settings: { }
title:
type: string_textfield
weight: 1
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
uid:
type: entity_reference_autocomplete
weight: 6
region: content
settings:
match_operator: CONTAINS
match_limit: 10
size: 60
placeholder: ''
third_party_settings: { }
hidden:
promote: true
sticky: true

View File

@ -0,0 +1,105 @@
uuid: 5afba244-fad8-4308-962b-df48868f73b0
langcode: sl
status: true
dependencies:
config:
- field.field.node.skupina.body
- field.field.node.skupina.field_link
- field.field.node.skupina.field_slika
- image.style.thumbnail
- node.type.skupina
module:
- image
- link
- path
- text
id: node.skupina.default
targetEntityType: node
bundle: skupina
mode: default
content:
body:
type: text_textarea_with_summary
weight: 121
region: content
settings:
rows: 9
summary_rows: 3
placeholder: ''
show_summary: false
third_party_settings: { }
created:
type: datetime_timestamp
weight: 10
region: content
settings: { }
third_party_settings: { }
field_link:
type: link_default
weight: 123
region: content
settings:
placeholder_url: ''
placeholder_title: ''
third_party_settings: { }
field_slika:
type: image_image
weight: 122
region: content
settings:
progress_indicator: throbber
preview_image_style: thumbnail
third_party_settings: { }
langcode:
type: language_select
weight: 2
region: content
settings:
include_locked: true
third_party_settings: { }
path:
type: path
weight: 30
region: content
settings: { }
third_party_settings: { }
promote:
type: boolean_checkbox
weight: 15
region: content
settings:
display_label: true
third_party_settings: { }
status:
type: boolean_checkbox
weight: 120
region: content
settings:
display_label: true
third_party_settings: { }
sticky:
type: boolean_checkbox
weight: 16
region: content
settings:
display_label: true
third_party_settings: { }
title:
type: string_textfield
weight: -5
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
uid:
type: entity_reference_autocomplete
weight: 5
region: content
settings:
match_operator: CONTAINS
match_limit: 10
size: 60
placeholder: ''
third_party_settings: { }
hidden: { }

View File

@ -0,0 +1,39 @@
uuid: 457e41e2-f7d6-42ac-9599-4abf0731502d
langcode: sl
status: true
dependencies:
config:
- field.field.user.user.user_picture
- image.style.thumbnail
module:
- image
- user
_core:
default_config_hash: FaQ9Ptcpxpg30AtiqRDtl_8zbJArHP1LPfug_s59TOA
id: user.user.default
targetEntityType: user
bundle: user
mode: default
content:
account:
weight: -10
region: content
contact:
weight: 5
region: content
language:
weight: 0
region: content
timezone:
weight: 6
region: content
user_picture:
type: image_image
weight: -1
region: content
settings:
progress_indicator: throbber
preview_image_style: thumbnail
third_party_settings: { }
hidden:
langcode: true

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