first commit

This commit is contained in:
Bachir Soussi Chiadmi 2024-07-09 12:42:57 +02:00
commit 8f77ab61dc
208 changed files with 23580 additions and 0 deletions

17
.editorconfig Normal file
View File

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

64
.gitattributes vendored Normal file
View File

@ -0,0 +1,64 @@
# 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
# PHPStan's baseline uses tabs instead of spaces.
core/.phpstan-baseline.php text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tabwidth=2 diff=php linguist-language=php
# 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

49
.gitignore vendored Normal file
View File

@ -0,0 +1,49 @@
# Ignore directories generated by Composer
/drush/contrib/
/vendor/
/web/core/
/web/modules/contrib/
/web/themes/contrib/
/web/profiles/contrib/
/web/libraries/
web/modules/dev/*.tar.gz
# Ignore sensitive information
/web/sites/*/settings.php
/web/sites/*/settings.local.php
/web/sites/*/services*.yml
/web/sites/*/salt.txt
# Ignore Drupal's file directory
/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
# npm
node_modules/
*.patch
~/patches/*.patch
/.csslintrc
/.eslintrc.json
/.ht.router.php
/.htaccess
/INSTALL.txt
/README.txt
/autoload.php
/example.gitignore
/index.php
/robots.txt
/update.php
/web.config
.vscode/*

6
.gitmodules vendored Normal file
View File

@ -0,0 +1,6 @@
[submodule "src/web/profiles/drupal-starterkit-profile"]
path = src/web/profiles/drupal-starterkit-profile
url = https://figureslibres.io/gogs/bachir/drupal-starterkit-profile.git
[submodule "web/profiles/drupal-starterkit-profile"]
path = web/profiles/drupal-starterkit-profile
url = https://figureslibres.io/gogs/bachir/drupal-starterkit-profile.git

108
composer.json Normal file
View File

@ -0,0 +1,108 @@
{
"name": "drupal/recommended-project",
"description": "Project template for Drupal projects with a relocated document root",
"type": "project",
"license": "GPL-2.0-or-later",
"homepage": "https://www.drupal.org/project/drupal",
"support": {
"docs": "https://www.drupal.org/docs/user_guide/en/index.html",
"chat": "https://www.drupal.org/node/314178"
},
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"require": {
"composer/installers": "^2.0",
"drupal/core-composer-scaffold": "^10.2",
"drupal/core-project-message": "^10.2",
"drupal/core-recommended": "^10.2",
"drupal/lupus_decoupled": "^1.0@beta",
"wikimedia/composer-merge-plugin": "^2.1"
},
"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,
"php-http/discovery": true,
"wikimedia/composer-merge-plugin": true,
"cweagans/composer-patches": true
},
"sort-packages": true
},
"extra": {
"drupal-scaffold": {
"locations": {
"web-root": "web/"
}
},
"installer-paths": {
"web/core": [
"type:drupal-core"
],
"web/libraries/{$name}": [
"type:drupal-library"
],
"web/modules/contrib/{$name}": [
"type:drupal-module"
],
"web/profiles/contrib/{$name}": [
"type:drupal-profile"
],
"web/themes/contrib/{$name}": [
"type:drupal-theme"
],
"drush/Commands/contrib/{$name}": [
"type:drupal-drush"
],
"web/modules/custom/{$name}": [
"type:drupal-custom-module"
],
"web/profiles/custom/{$name}": [
"type:drupal-custom-profile"
],
"web/themes/custom/{$name}": [
"type:drupal-custom-theme"
]
},
"drupal-core-project-message": {
"include-keys": [
"homepage",
"support"
],
"post-create-project-cmd-message": [
"<bg=blue;fg=white> </>",
"<bg=blue;fg=white> Congratulations, youve installed the Drupal codebase </>",
"<bg=blue;fg=white> from the drupal/recommended-project template! </>",
"<bg=blue;fg=white> </>",
"",
"<bg=yellow;fg=black>Next steps</>:",
" * Install the site: https://www.drupal.org/docs/installing-drupal",
" * Read the user guide: https://www.drupal.org/docs/user_guide/en/index.html",
" * Get support: https://www.drupal.org/support",
" * Get involved with the Drupal community:",
" https://www.drupal.org/getting-involved",
" * Remove the plugin that prints this message:",
" composer remove drupal/core-project-message"
]
},
"merge-plugin": {
"include": [
"web/profiles/drupal-starterkit-profile/composer.json"
],
"recurse": true,
"replace": false,
"merge-extra": true
}
}
}

12219
composer.lock generated Normal file

File diff suppressed because it is too large Load Diff

24
config/sync/.htaccess Normal file
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: RumewwAShocwpN5KgIf0U8Z2yd4_f7mQJpYnwLTzhhQ
langcode: fr
menu_depth: 4

View File

@ -0,0 +1,10 @@
_core:
default_config_hash: POBebmsKHIsvlfkapwnXbybgOWqPg7W6XWZsmOBvVjk
features:
node_user_picture: false
comment_user_picture: true
comment_user_verification: true
favicon: 1
logo:
use_default: 1
langcode: fr

View File

@ -0,0 +1,22 @@
uuid: 836895cd-edbb-41fb-aca5-897cdeffdf37
langcode: fr
status: true
dependencies:
module:
- system
theme:
- adminimal_theme
_core:
default_config_hash: 8by5KRsb7ZpmjHj0ms1d7xAG_xH54AWsOX6spDLJ59U
id: adminimal_theme_breadcrumbs
theme: adminimal_theme
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: 3e33cbf0-eda8-4128-89c0-d14efb5b38ab
langcode: fr
status: true
dependencies:
module:
- system
theme:
- adminimal_theme
_core:
default_config_hash: 80N66GdzEvwqi1m-_GZ-ulkk8AJG9beoXcZ4-pMVKjI
id: adminimal_theme_content
theme: adminimal_theme
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: 114cd564-0b50-4c4a-b37a-c02110645f46
langcode: fr
status: true
dependencies:
module:
- help
theme:
- adminimal_theme
_core:
default_config_hash: eEDfDNC_bpiaWJwwnu4Bppn9-o-zsOYRpc1IEPL4NRg
id: adminimal_theme_help
theme: adminimal_theme
region: help
weight: 0
provider: null
plugin: help_block
settings:
id: help_block
label: Aide
label_display: '0'
provider: help
visibility: { }

View File

@ -0,0 +1,20 @@
uuid: a26a686b-695b-4122-97f1-aef46a61ecb0
langcode: fr
status: true
dependencies:
theme:
- adminimal_theme
_core:
default_config_hash: AhJ84PvhlYF8GxtMEErWbZFn2Yc5tiJo4uUbeFYY77o
id: adminimal_theme_local_actions
theme: adminimal_theme
region: content
weight: -10
provider: null
plugin: local_actions_block
settings:
id: local_actions_block
label: "Actions d'administration principales"
label_display: '0'
provider: core
visibility: { }

View File

@ -0,0 +1,22 @@
uuid: c32fa572-c5fd-4da0-b045-4d1f5573bcab
langcode: fr
status: true
dependencies:
module:
- user
theme:
- adminimal_theme
_core:
default_config_hash: 862sIulDdHmF0vBU1s2j2_a_CwkxursrL0pIrMDzzOg
id: adminimal_theme_login
theme: adminimal_theme
region: content
weight: 10
provider: null
plugin: user_login_block
settings:
id: user_login_block
label: 'User login'
label_display: visible
provider: user
visibility: { }

View File

@ -0,0 +1,22 @@
uuid: c6be4693-8a24-4827-adcd-e7acd41de0d6
langcode: fr
status: true
dependencies:
module:
- system
theme:
- adminimal_theme
_core:
default_config_hash: YqKTtloWJ8FjLtfVNfrHaK6kVgxT67lC1cJ3j6i6WLo
id: adminimal_theme_messages
theme: adminimal_theme
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: fc77e98e-e57e-4cb9-b218-c7f2957bbc5f
langcode: fr
status: true
dependencies:
theme:
- adminimal_theme
_core:
default_config_hash: ZrIf936eEHtSSnxkcCjz8MJKFF0eD93m9dkh4nepNHQ
id: adminimal_theme_page_title
theme: adminimal_theme
region: header
weight: -30
provider: null
plugin: page_title_block
settings:
id: page_title_block
label: 'Titre de page'
label_display: '0'
provider: core
visibility: { }

View File

@ -0,0 +1,22 @@
uuid: 975cce74-5f7e-47de-ba20-b58f8346cd2d
langcode: fr
status: true
dependencies:
theme:
- adminimal_theme
_core:
default_config_hash: 20ozyeBtDWvVAjfTl6lWOGd31vZTJFuXViP52-mJrcA
id: adminimal_theme_primary_local_tasks
theme: adminimal_theme
region: header
weight: 0
provider: null
plugin: local_tasks_block
settings:
id: local_tasks_block
label: 'Onglets principaux'
label_display: '0'
provider: core
primary: true
secondary: false
visibility: { }

View File

@ -0,0 +1,22 @@
uuid: 6a94e2da-5cba-4e52-abeb-0f52d1dca526
langcode: fr
status: true
dependencies:
theme:
- adminimal_theme
_core:
default_config_hash: OHHbgqIxnbmi0dujxk1HgPI5sJ9_fxvDtVzWfOEYXO4
id: adminimal_theme_secondary_local_tasks
theme: adminimal_theme
region: pre_content
weight: 0
provider: null
plugin: local_tasks_block
settings:
id: local_tasks_block
label: 'Onglets secondaires'
label_display: '0'
provider: core
primary: false
secondary: true
visibility: { }

View File

@ -0,0 +1,22 @@
_core:
default_config_hash: b2oFJe1PqZ6C4AU6Ymfly5hMNnz9EruGjyTsLXRjCyk
langcode: fr
maxlength_block_class_field: 255
field_type: multiple_textfields
default_case: standard
enable_attributes: true
enable_auto_complete: true
qty_classes_per_block: 10
items_per_page: 50
enable_special_chars: false
qty_attributes_per_block: 10
enable_id_replacement: true
weight_attributes: 0
weight_class: 0
weight_id: 0
filter_html_clean_css_identifier: ''
maxlength_attributes: 0
maxlength_id: 255
attribute_keys_stored: '[]'
attribute_value_stored: '[]'
attributes_inline: '[]'

View File

@ -0,0 +1,5 @@
_core:
default_config_hash: AF4cxceuiw6dhwOrF9ZgpyKC4xsWt4Yhvohb3WNgn8o
auto_import: { }
auto_export: { }
langcode: fr

View File

@ -0,0 +1,4 @@
_core:
default_config_hash: LzdDtE3Im_Ysio7g1Eo8ymSMq0mgSQMPzv0khsr_J64
langcode: fr
ignored_config_entities: { }

View File

@ -0,0 +1,13 @@
uuid: f1417d5a-654d-4cbd-9486-24fe4451abe9
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: movrd14KpikJjyW8Tzhj-5wjnGcPbKCjn3TdwUTUmCU
id: personal
label: 'Formulaire de contact personnel'
recipients: { }
reply: ''
weight: 0
message: 'Votre message a été envoyé.'
redirect: null

View File

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

View File

@ -0,0 +1,47 @@
_core:
default_config_hash: IdcCyfVkD8kunSj3rbm1mwrfJbfcJK4bjfPheIqxnxI
langcode: fr
verbose: 0
types:
contact_message: { }
file:
'*': '*'
node:
'*': '*'
search_api_task: { }
taxonomy_term:
'*': '*'
user: { }
workflow_transition: { }
workflow_scheduled_transition: { }
menu_link_content: { }
types_translation_lock: { }
types_js_lock: { }
form_op_lock:
contact_message:
mode: 0
values: { }
file:
mode: null
values: { }
node:
mode: 0
values: { }
search_api_task:
mode: null
values: { }
taxonomy_term:
mode: 0
values: { }
user:
mode: 0
values: { }
workflow_transition:
mode: 0
values: { }
workflow_scheduled_transition:
mode: 0
values: { }
menu_link_content:
mode: 0
values: { }

View File

@ -0,0 +1,5 @@
_core:
default_config_hash: S2TgQLZhiodGAfJKqb5Epnsksw3ST09nIMqTazOcBuI
langcode: fr
content_lock_timeout_minutes: '30'
content_lock_timeout_on_edit: 0

View File

@ -0,0 +1,20 @@
uuid: 8cf3fc6c-0588-4a03-ab93-096ea2238d67
langcode: fr
status: true
dependencies:
module:
- menu_link_content
_core:
default_config_hash: 1HGIVSfcrC22_B0p1yCvD2bzOoh-uB5oesBZew5fh_s
id: menu_link_content.menu_link_content.changed
field_name: changed
entity_type: menu_link_content
bundle: menu_link_content
label: Modifié
description: 'Le moment où le lien de menu a été modifié pour la dernière fois.'
required: false
translatable: false
default_value: { }
default_value_callback: ''
settings: { }
field_type: changed

View File

@ -0,0 +1,20 @@
uuid: 330bf0b7-02b6-4f0c-8e84-7364f51cefc7
langcode: fr
status: true
dependencies:
module:
- menu_link_content
_core:
default_config_hash: bdaGWpGSpGmtVQszYijheTK8rwLq13JzW-WrLB1ND2I
id: menu_link_content.menu_link_content.description
field_name: description
entity_type: menu_link_content
bundle: menu_link_content
label: Description
description: "S'affiche au survol du lien du menu."
required: false
translatable: false
default_value: { }
default_value_callback: ''
settings: { }
field_type: string

View File

@ -0,0 +1,20 @@
uuid: 5174b1ec-3240-48a2-af10-6eb8ba9a231a
langcode: fr
status: true
dependencies:
module:
- menu_link_content
_core:
default_config_hash: oi5nggP-TPemyflo1Wh5tQXXo2wEGZHXUAgziw3kTz4
id: menu_link_content.menu_link_content.title
field_name: title
entity_type: menu_link_content
bundle: menu_link_content
label: 'Titre du lien dans le menu'
description: 'Le texte à utiliser pour ce lien dans le menu.'
required: true
translatable: false
default_value: { }
default_value_callback: ''
settings: { }
field_type: string

View File

@ -0,0 +1,24 @@
uuid: 55cb09c4-0ec6-4831-8e5e-a27c07cc93dc
langcode: fr
status: true
dependencies:
config:
- node.type.static
_core:
default_config_hash: 9pcoHylyIiAR9mzuZPvW8G3P_4hI0iYiqRQLSaflsP4
id: node.static.promote
field_name: promote
entity_type: node
bundle: static
label: "Promu en page d'accueil"
description: ''
required: false
translatable: true
default_value:
-
value: 0
default_value_callback: ''
settings:
on_label: Activé
off_label: Désactivé
field_type: boolean

View File

@ -0,0 +1,10 @@
uuid: 81d82702-e7e8-4fb8-806c-827de370f2f1
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: DOQ-wPYV7noHnJWtD6Qp5iQfR6ndXrlCKkr6weABWfE
id: fallback
label: 'Format de date de repli'
locked: true
pattern: 'D, m/d/Y - H:i'

View File

@ -0,0 +1,10 @@
uuid: 8db78d43-64fc-438d-8c80-15f5c25c7f45
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: nk0Cschl2If2BbifUDxyDHkEBXZ8MXeUK78Sv3J9Ylg
id: html_date
label: 'Date HTML'
locked: true
pattern: Y-m-d

View File

@ -0,0 +1,10 @@
uuid: 820ec888-cd3f-4f8e-9295-8e30544efb0a
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: 6c4UnTAyJ3_Tpv19al063p4R4L0dROdN-lWlIdpSbDI
id: html_datetime
label: 'Date et heure HTML'
locked: true
pattern: 'Y-m-d\TH:i:sO'

View File

@ -0,0 +1,10 @@
uuid: 77d03b15-3b34-44a1-8ed6-e9060a1ffd31
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: fQtEttsgj_pPVpmI8NhGZOoc_C-3GaUaX5QOLFMM9yw
id: html_month
label: 'Mois HTML'
locked: true
pattern: Y-m

View File

@ -0,0 +1,10 @@
uuid: 37711d63-c368-4b95-9f0c-bc335f536a65
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: 1a8opuFTt-TQPbnEr1ku82H8o2c51fyuZ6WyiQwVwUk
id: html_time
label: 'Heure HTML'
locked: true
pattern: 'H:i:s'

View File

@ -0,0 +1,10 @@
uuid: 1b369d4a-0eec-4499-b75a-c4d35e7e9d08
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: IltD_8w7ZrDE5JWxt2_Q-GMXbqcyM-My8cQGi1Y1Kl8
id: html_week
label: 'Semaine HTML'
locked: true
pattern: Y-\WW

View File

@ -0,0 +1,10 @@
uuid: 7c5a73cb-fa28-4760-b6e5-2529fda3823e
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: qW24m1nETr83C2FB7NzSltpE3vbasHdiiiJ8kYTb-EY
id: html_year
label: 'Année HTML'
locked: true
pattern: 'Y'

View File

@ -0,0 +1,10 @@
uuid: 5980bb18-6cdc-4834-bb1a-c993518f2bb0
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: T2XD4vbpXM2sUFsgGq9R06hb3wlQ3mO_tnNq4PLm7Rg
id: html_yearless_date
label: 'Date HTML sans année'
locked: true
pattern: m-d

View File

@ -0,0 +1,10 @@
uuid: ba3579d9-e185-49f1-9075-46d721450d07
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: vvSGMoIb6yF-Rznf_X7TEadGRPtrsGzv5_GOWDoVyMI
id: long
label: 'Date longue par défaut'
locked: false
pattern: 'l j F Y - H:i'

View File

@ -0,0 +1,10 @@
uuid: 0709c499-6751-49b7-8ee1-b50dccda0d00
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: 9UWa4AeID_OwgI3RQbxLVkKdB3W2y4lw6wFw31m_T5c
id: medium
label: 'Date moyenne par défaut'
locked: false
pattern: 'D d/m/Y - H:i'

View File

@ -0,0 +1,10 @@
uuid: c2fe6735-f862-4f07-9b98-4c20de6684ef
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: iEWBlRvmfDb6o7rWokMVoVqBV03MMM83lr90E4jGnSI
id: short
label: 'Date courte par défaut'
locked: false
pattern: 'd/m/Y - H:i'

View File

@ -0,0 +1,13 @@
uuid: c3ee4251-7673-4a9a-a623-9dd6698b7939
langcode: fr
status: true
dependencies:
module:
- user
_core:
default_config_hash: 5pE_4hurqtIlZN3XDi7eTo5RG13BMG0Rh9HYlRI3h8U
id: user.register
label: Register
description: ''
targetEntityType: user
cache: true

View File

@ -0,0 +1,13 @@
uuid: 0729bc3b-8d14-47d9-b71b-5fc2f9984a79
langcode: fr
status: true
dependencies:
module:
- block
_core:
default_config_hash: eZGw53_tQR0o846P6awZpw-1AarhtXlm-6AKAkmLvKY
id: block.token
label: 'Jeton (token)'
description: ''
targetEntityType: block
cache: true

View File

@ -0,0 +1,13 @@
uuid: 6eb8a032-f095-46d8-be40-1681c2e86cee
langcode: fr
status: true
dependencies:
module:
- contact
_core:
default_config_hash: 2xSc_t5yN14t-fSfl3MR1WP9Em9ij1hY8A5IIVGlhts
id: contact_message.token
label: 'Jeton (token)'
description: ''
targetEntityType: contact_message
cache: true

View File

@ -0,0 +1,13 @@
uuid: 9b38d09c-8439-4d0b-97b1-4cf5be108ff5
langcode: fr
status: true
dependencies:
module:
- file
_core:
default_config_hash: uZo6zv9Fa0wuqgu1kigVUhfRyvk1vQhD9GCP3HElGBk
id: file.token
label: 'Jeton (token)'
description: ''
targetEntityType: file
cache: true

View File

@ -0,0 +1,13 @@
uuid: f23b6536-444a-499b-825e-691684ec3dbf
langcode: fr
status: true
dependencies:
module:
- menu_link_content
_core:
default_config_hash: y5XBjb33PolVKVUnedtISf0rSrGdyo10HxOcI6Mey_w
id: menu_link_content.token
label: 'Jeton (token)'
description: ''
targetEntityType: menu_link_content
cache: true

View File

@ -0,0 +1,13 @@
uuid: 8587924f-836b-4067-992d-da7aa5abf33b
langcode: fr
status: false
dependencies:
module:
- node
_core:
default_config_hash: m4oQ8ZK4CNZqGBAczllmaKSGmjD5xXitPDvByAPwN3c
id: node.full
label: 'Contenu complet'
description: ''
targetEntityType: node
cache: true

View File

@ -0,0 +1,13 @@
uuid: 8afdb0aa-de7d-41aa-b280-ed6bbd2ea955
langcode: fr
status: false
dependencies:
module:
- node
_core:
default_config_hash: _lDZ7IYi00gmEw2ZkiWGmDYwxkccBlUyLGxMIJDTYkc
id: node.rss
label: RSS
description: ''
targetEntityType: node
cache: true

View File

@ -0,0 +1,13 @@
uuid: bacafa10-0ff3-4568-817e-0c1fc4e2d07d
langcode: fr
status: false
dependencies:
module:
- node
_core:
default_config_hash: a4DyjkgEtvja2s1_cGy9Ealzu0LbDwzhEcpFP7aArNg
id: node.search_index
label: 'Index de recherche'
description: ''
targetEntityType: node
cache: true

View File

@ -0,0 +1,13 @@
uuid: 003c9518-d634-4458-8d6f-980f85d22bb4
langcode: fr
status: false
dependencies:
module:
- node
_core:
default_config_hash: Gj61wjl4G9UfFnYfmi-e7Eyvwiqzcz6sIP24vA4nkHU
id: node.search_result
label: 'Résultat de recherche mettant en évidence la saisie'
description: ''
targetEntityType: node
cache: true

View File

@ -0,0 +1,13 @@
uuid: a716976d-50e3-4104-a145-3081df4442ce
langcode: fr
status: true
dependencies:
module:
- node
_core:
default_config_hash: qJFVUFu6IPN8a4WgoDs0gcfyJqE3l3euB0wd1kO6hRQ
id: node.teaser
label: Accroche
description: ''
targetEntityType: node
cache: true

View File

@ -0,0 +1,13 @@
uuid: 2bf60f8f-d9ab-4d0d-8997-5b635030846d
langcode: fr
status: true
dependencies:
module:
- node
_core:
default_config_hash: 7JhK586z4WYrdjuTZH19-WxWlLIi2QlS2ZL7m01bO6E
id: node.token
label: 'Jeton (token)'
description: ''
targetEntityType: node
cache: true

View File

@ -0,0 +1,13 @@
uuid: 436b8a96-beb5-47ad-995d-918361e8878e
langcode: fr
status: true
dependencies:
module:
- path_alias
_core:
default_config_hash: jNmsvf8AwwKxbOUYZuY8oBMQpLbkcbFsHy1U4gQhUME
id: path_alias.token
label: Token
description: ''
targetEntityType: path_alias
cache: true

View File

@ -0,0 +1,13 @@
uuid: 493c81f9-c7e6-46c0-8458-4824ad9921c8
langcode: fr
status: true
dependencies:
module:
- taxonomy
_core:
default_config_hash: iukUENpf8CFvjZbGGacKX_Ges0-lU9z6zvsd32P6kbo
id: taxonomy_term.full
label: 'Taxonomy term page'
description: ''
targetEntityType: taxonomy_term
cache: true

View File

@ -0,0 +1,11 @@
uuid: 219e12f9-207b-4d3d-91dc-fb00b91e559e
langcode: fr
status: true
dependencies:
module:
- taxonomy
id: taxonomy_term.token
label: Token
description: ''
targetEntityType: taxonomy_term
cache: true

View File

@ -0,0 +1,13 @@
uuid: e3acbf25-2bba-4e1e-8227-100728415027
langcode: fr
status: true
dependencies:
module:
- user
_core:
default_config_hash: TtD7OuGskOsQfoGyxXkrdtllBpR37J19d5BMQDZWJgA
id: user.compact
label: Compact
description: ''
targetEntityType: user
cache: true

View File

@ -0,0 +1,13 @@
uuid: e3943e25-b193-4c71-8201-cfc583904baf
langcode: fr
status: false
dependencies:
module:
- user
_core:
default_config_hash: ZbXunWS_xAvMZXFfinyvClDAb_RCVLt7gAzE3v16E-Q
id: user.full
label: 'User account'
description: ''
targetEntityType: user
cache: true

View File

@ -0,0 +1,11 @@
uuid: d8f57408-372c-402e-a014-e6c066304945
langcode: fr
status: true
dependencies:
module:
- user
id: user.token
label: Token
description: ''
targetEntityType: user
cache: true

View File

@ -0,0 +1,118 @@
_core:
default_config_hash: R4IF-ClDHXxblLcG0L7MgsLvfBIMAvi_skumNFQwkDc
langcode: fr
module:
actions_permissions: 0
admin_toolbar: 0
admin_toolbar_links_access_filter: 0
advanced_text_formatter: 0
audiofield: 0
autocomplete_deluxe: 0
ban: 0
better_exposed_filters: 0
block: 0
block_class: 0
breakpoint: 0
bulkdelete: 0
ckeditor5: 0
config: 0
config_devel: 0
config_filter: 0
config_ignore: 0
config_rewrite: 0
config_translation: 0
config_update: 0
contact: 0
content_lock: 0
content_lock_timeout: 0
context: 0
context_ui: 0
contextual: 0
cshs: 0
ctools: 0
ctools_block: 0
ctools_views: 0
datetime: 0
datetime_range: 0
dblog: 0
devel: 0
devel_generate: 0
dynamic_page_cache: 0
editor: 0
email_registration: 0
embed: 0
entity_browser: 0
entity_browser_enhanced: 0
field: 0
field_group: 0
field_ui: 0
file: 0
filter: 0
filter_perms: 0
formatter_suite: 0
help: 0
honeypot: 0
image: 0
inline_entity_form: 0
language: 0
link: 0
link_attributes: 0
linkit: 0
locale: 0
lupus_ce_renderer: 0
lupus_decoupled: 0
lupus_decoupled_block: 0
lupus_decoupled_ce_api: 0
lupus_decoupled_cors: 0
lupus_decoupled_menu: 0
lupus_decoupled_views: 0
maillog: 0
maxlength: 0
menu_block: 0
menu_link_content: 0
menu_ui: 0
metatag: 0
mysql: 0
node: 0
options: 0
page_cache: 0
pagerer: 0
path: 0
path_alias: 0
path_alias_xt: 0
pathologic: 0
persistent_login: 0
redis: 0
responsive_image: 0
rest: 0
rest_menu_items: 0
search_api: 0
search_api_db: 0
serialization: 0
smart_trim: 0
smtp: 0
system: 0
taxonomy: 0
telephone: 0
text: 0
token: 0
toolbar: 0
translation_views: 0
trusted_redirect: 0
update: 0
user: 0
video_embed_field: 0
views_bulk_edit: 0
views_bulk_operations: 0
views_ui: 0
extlink: 1
menu_admin_per_menu: 1
pathauto: 1
content_translation: 10
custom_elements: 10
views: 10
figli_starter_kit: 1000
theme:
seven: 0
adminimal_theme: 0
profile: figli_starter_kit

View File

@ -0,0 +1,4 @@
_core:
default_config_hash: vCYrtzrLLCbq9UlGR4CxiEg0LXt4qGwRO4VkluZZq9o
langcode: fr
definitions: { }

View File

@ -0,0 +1,4 @@
_core:
default_config_hash: 8vsBBd4K8HUd8pNnH-febx2rGi0-v5Doua8t9_XUtQ8
langcode: fr
markup_style: vue-3

View File

@ -0,0 +1,4 @@
_core:
default_config_hash: DfshuQJJ7I30rwPRVdQT67nvhPnXkFiJK_dmJxZgNKc
langcode: fr
row_limit: 1000

View File

@ -0,0 +1,11 @@
_core:
default_config_hash: IF0N5iOZlOY8dJPSNNkZwph9jkMpkJvI4dTuK1xiD0Q
langcode: fr
page_alter: false
raw_names: false
error_handlers:
1: 1
rebuild_theme: false
debug_mail_file_format: '%to-%subject-%datetime.mail.txt'
debug_mail_directory: 'temporary://devel-mails'
devel_dumper: var_dumper

View File

@ -0,0 +1,8 @@
_core:
default_config_hash: IDzCy0l7vH5sENShziSE_TwGo7oDfS1yB4c26KU6WnE
toolbar_items:
- devel.cache_clear
- devel.phpinfo
- devel.run_cron
- devel.theme_registry
langcode: fr

View File

@ -0,0 +1,27 @@
uuid: 8bc5c45a-4f29-4635-b1c4-d89c4b3029d8
langcode: fr
status: true
dependencies:
config:
- filter.format.wysiwyg
module:
- ckeditor5
_core:
default_config_hash: UHzilqnilnoji3DdOanr6_xzX4Dg430p8Dn4Ub7U9dw
format: wysiwyg
editor: ckeditor5
settings:
toolbar:
items:
- heading
- bold
- italic
plugins:
ckeditor5_heading:
enabled_headings:
- heading2
- heading3
- heading4
- heading5
- heading6
image_upload: { }

View File

@ -0,0 +1,4 @@
_core:
default_config_hash: k024s6lEcCjGqAq_82KNi-RRCCc37Jxo5frFNChAqao
login_with_username: false
langcode: fr

View File

@ -0,0 +1,5 @@
_core:
default_config_hash: 7CGKsosNQEyYfQ2qiob-sBdmox8rrL5He7iLJgJ1kNo
langcode: fr
file_scheme: public
upload_directory: embed_buttons

View File

@ -0,0 +1,19 @@
_core:
default_config_hash: FhLRCg4ZgDyAnJvH9lJR6uGqQ2FNIFL25hnG6c2gkZs
langcode: fr
extlink_target: false
extlink_target_no_override: false
extlink_nofollow: false
extlink_follow_no_override: false
extlink_subdomains: true
extlink_alert: false
extlink_alert_text: 'Ce lien vous dirige vers un site externe. Nous ne sommes pas responsables de son contenu.'
extlink_exclude: ''
extlink_include: ''
extlink_class: ext
extlink_label: '(le lien est externe)'
extlink_img_class: false
extlink_css_exclude: ''
extlink_css_explicit: ''
extlink_mailto_class: mailto
extlink_mailto_label: '(link sends email)'

View File

@ -0,0 +1,4 @@
_core:
default_config_hash: yC1VrNt3it8LmbGTO8cGhgNqRgN3ikhqun5dCWFVCAA
langcode: fr
purge_batch_size: 50

View File

@ -0,0 +1,21 @@
uuid: be7efd76-55d6-42f0-9dc8-d0d387d0367b
langcode: fr
status: true
dependencies:
module:
- node
- text
_core:
default_config_hash: EBUo7qOWqaiZaQ_RC9sLY5IoDKphS34v77VIHSACmVY
id: node.body
field_name: body
entity_type: node
type: text_with_summary
settings: { }
module: text
locked: false
cardinality: 1
translatable: true
indexes: { }
persist_with_no_fields: true
custom_storage: false

View File

@ -0,0 +1,4 @@
_core:
default_config_hash: zZhJs6wF6FMXjS8njswFvmbk2XEGcj0nLI-mZCfAoFs
field_prefix: field_
langcode: fr

View File

@ -0,0 +1,9 @@
_core:
default_config_hash: _5293QOM-Perj4qDT33F4EmNlI9Ge0bNd_WYrZilDPA
description:
type: textfield
length: 128
icon:
directory: core/modules/file/icons
langcode: fr
make_unused_managed_files_temporary: false

View File

@ -0,0 +1,29 @@
uuid: 7ed2aabb-472f-4362-9284-78141f606a77
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: '-HkgHFb_tVNTyyY2lYcwyfNRVwiDA6HKxfP6hr2oA00'
name: 'Texte brut'
format: plain_text
weight: 10
filters:
filter_autop:
id: filter_autop
provider: filter
status: true
weight: 0
settings: { }
filter_html_escape:
id: filter_html_escape
provider: filter
status: true
weight: -10
settings: { }
filter_url:
id: filter_url
provider: filter
status: true
weight: 0
settings:
filter_url_length: 72

View File

@ -0,0 +1,70 @@
uuid: c4abc638-16d2-45a2-8067-ebc050b858eb
langcode: fr
status: true
dependencies:
module:
- editor
_core:
default_config_hash: a0dSxrd1nnzeSvKpvFmtoLpxDd3Nj6E7dQN-MZUi20g
name: wysiwyg
format: wysiwyg
weight: 0
filters:
editor_file_reference:
id: editor_file_reference
provider: editor
status: true
weight: -50
settings: { }
filter_align:
id: filter_align
provider: filter
status: false
weight: -41
settings: { }
filter_autop:
id: filter_autop
provider: filter
status: true
weight: -49
settings: { }
filter_caption:
id: filter_caption
provider: filter
status: false
weight: -40
settings: { }
filter_html:
id: filter_html
provider: filter
status: false
weight: -43
settings:
allowed_html: '<em> <strong> <cite> <blockquote cite> <code> <ul type> <ol start type> <li> <dl> <dt> <dd> <h2 id> <h3 id> <h5 id> <h6 id> <u> <a href hreflang !href accesskey id rel target title data-entity-type data-entity-uuid data-entity-substitution> <img src alt data-entity-type data-entity-uuid data-entity-substitution> <p> <h1> <pre> <h4 id class="inter-titre">'
filter_html_help: true
filter_html_nofollow: false
filter_html_escape:
id: filter_html_escape
provider: filter
status: false
weight: -42
settings: { }
filter_html_image_secure:
id: filter_html_image_secure
provider: filter
status: true
weight: -48
settings: { }
filter_htmlcorrector:
id: filter_htmlcorrector
provider: filter
status: true
weight: -47
settings: { }
filter_url:
id: filter_url
provider: filter
status: true
weight: -45
settings:
filter_url_length: 72

View File

@ -0,0 +1,5 @@
_core:
default_config_hash: lbxA85k_ynsRFrQ1JCNbgazSNG5GTs5aoOSL0W-UsvM
fallback_format: plain_text
always_show_fallback_choice: false
langcode: fr

View File

@ -0,0 +1,23 @@
_core:
default_config_hash: MkRrI2YYk2oy2dBC48Sfb-SPN2Nf9xNMJedYjbsBUFw
unprotected_forms:
- user_login_form
- search_form
- search_block_form
- views_exposed_form
- honeypot_settings_form
protect_all_forms: false
log: true
element_name: url
time_limit: 5
expire: 300
form_settings:
user_register_form: true
user_pass: true
node_autre_son_form: false
node_enregistrement_form: false
node_evenement_form: false
node_fil_form: false
node_page_form: false
node_static_form: false
langcode: fr

View File

@ -0,0 +1,6 @@
_core:
default_config_hash: 7CnygMhc8yrEJGdPf_5QRmPsMvr4QoXlsmMo3te3nbw
preview_image: core/modules/image/sample.png
allow_insecure_derivatives: false
suppress_itok_output: false
langcode: fr

View File

@ -0,0 +1,17 @@
uuid: e816035c-e8eb-4f37-b1e9-cb5dfc3b4d98
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: CVznlrxJZplSgxXAxSUJPtzw8I-G_oWg6TbS1lMRbUw
name: large
label: 'Large (480×480)'
effects:
ddd73aa7-4bd6-4c85-b600-bdf2b1628d1d:
uuid: ''
id: image_scale
weight: 0
data:
width: 480
height: 480
upscale: false

View File

@ -0,0 +1,17 @@
uuid: 89bd6741-82e0-4b82-a076-dd99a91a8928
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: ftD2T4UaJtHnFa0Q8EypXgyuMNBWzoLaLa4cuGiHEYI
name: linkit_result_thumbnail
label: 'Vignette de résultat Linkit'
effects:
2943df29-38ea-459c-ba1d-290489bb1807:
uuid: ''
id: image_scale_and_crop
weight: 1
data:
width: 50
height: 50
anchor: center-center

View File

@ -0,0 +1,17 @@
uuid: 7bfc2bfc-1595-4a36-938b-5b410bd08726
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: Q5Uwhw9G0r7SDQmISQR-WDDLVW0p10iomx_zwEeRTec
name: medium
label: 'Moyen (220x220)'
effects:
bddf0d06-42f9-4c75-a700-a33cafa25ea0:
uuid: ''
id: image_scale
weight: 0
data:
width: 220
height: 220
upscale: false

View File

@ -0,0 +1,17 @@
uuid: 92e68fe8-77e9-4f33-9280-820967a54cae
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: 808S1-h_6g5FXMi1DvZNcUfR0xgbGxZha9cbIFIeiUQ
name: thumbnail
label: 'Vignette (100x100)'
effects:
1cfec298-8620-4749-b100-ccb6c4500779:
uuid: ''
id: image_scale
weight: 0
data:
width: 100
height: 100
upscale: false

View File

@ -0,0 +1,17 @@
uuid: 5b676d77-3bc4-45d7-bd64-dab5169aad8d
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: Wmk_h3Nz9DCkjc_fJ2YR7y_J4PuMK6fN4mU4xIINN-g
name: wide
label: 'Large (1090)'
effects:
09959c15-59ce-4f6d-90df-e2d7cf32bce5:
uuid: ''
id: image_scale
weight: 1
data:
width: 1090
height: null
upscale: false

View File

@ -0,0 +1,13 @@
uuid: bd5cd773-69f1-44a6-bfdd-f27312a4242d
langcode: fr
status: true
dependencies:
config:
- node.type.static
_core:
default_config_hash: vbOq9ZwxcE0aCKgtfqoSG5aCBbkgPia6tPKdmmxELRo
id: node.static
target_entity_type_id: node
target_bundle: static
default_langcode: site_default
language_alterable: false

View File

@ -0,0 +1,13 @@
uuid: 57cbca42-bd14-433d-9920-6e78a81daba7
langcode: fr
status: true
dependencies:
module:
- path_alias
_core:
default_config_hash: m_7yBNwbvly3oKveqmvohnEXY7ef2r_jVloy67aHj08
id: path_alias.path_alias
target_entity_type_id: path_alias
target_bundle: path_alias
default_langcode: und
language_alterable: true

View File

@ -0,0 +1,11 @@
uuid: 3ca4714d-c469-4642-8964-d5d2cf80d1d8
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: wcTV5wdmdgiDePrwtwUA0nK1sTkIzGRr7er3wL-lxcE
id: fr
label: French
direction: ltr
weight: 0
locked: false

View File

@ -0,0 +1,11 @@
uuid: c7691f6c-6fba-43ab-9cbc-bd4a6c6cbf2c
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: d5UEcbtfmQlQ8BYP99zaQDMFGFCMX4zOzrSx6YAr9v8
id: und
label: 'Non spécifié'
direction: ltr
weight: 2
locked: true

View File

@ -0,0 +1,11 @@
uuid: 051e0b06-ad2f-4f10-a1dd-53c5c53019b5
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: AFwY4Lyiqj-ZJyCWVFNoz4yO8krfoxgLZWQpCW1h7x4
id: zxx
label: 'Non applicable'
direction: ltr
weight: 3
locked: true

View File

@ -0,0 +1,14 @@
_core:
default_config_hash: Ys5M79wZXx_k_rtFf65fpICqe7yH3h8iuxWMMB0utyI
langcode: fr
map:
'no': nb
pt: pt-pt
zh: zh-hans
zh-tw: zh-hant
zh-hk: zh-hant
zh-mo: zh-hant
zh-cht: zh-hant
zh-cn: zh-hans
zh-sg: zh-hans
zh-chs: zh-hans

View File

@ -0,0 +1,12 @@
_core:
default_config_hash: cRCI0tHP1UHHRAZnWB2kumZdKCl42f5lrV7q055H5jU
langcode: fr
session:
parameter: language
url:
source: path_prefix
prefixes:
fr: ''
domains:
fr: ''
selected_langcode: site_default

View File

@ -0,0 +1,20 @@
_core:
default_config_hash: uMLvVIvxpGVE_bF8BglnNT7vjMf_t8iNpe9_v1X0wAg
langcode: fr
all:
- language_interface
- language_content
- language_url
configurable:
- language_interface
negotiation:
language_content:
enabled:
language-interface: 0
language_url:
enabled:
language-url: 0
language-url-fallback: 1
language_interface:
enabled:
language-url: 0

View File

@ -0,0 +1,23 @@
uuid: 05698d86-f832-459a-8c71-87213d6c5ca9
langcode: fr
status: true
dependencies:
module:
- node
_core:
default_config_hash: 967Fy0vTwnyDBpxn7eoYLB9sFbXXrbH3KMUAD7Q-m0w
label: 'Par défaut'
id: default
description: 'A default Linkit profile'
matchers:
556010a3-e317-48b3-b4ed-854c10f4b950:
id: 'entity:node'
uuid: ''
settings:
metadata: '[node:content-type:name] #[node:nid] | [node:created:medium] by [node:author]'
bundles: { }
group_by_bundle: false
substitution_type: canonical
limit: 100
include_unpublished: false
weight: 0

View File

@ -0,0 +1,16 @@
_core:
default_config_hash: NfYKrBm84GgW4yeYijbs7xPXbUU8jQChyiu7x4qlNOw
langcode: fr
cache_strings: true
translate_english: false
javascript:
directory: languages
translation:
use_source: remote_and_local
default_filename: '%project-%version.%language.po'
default_server_pattern: 'https://ftp.drupal.org/files/translations/%core/%project/%project-%version.%language.po'
overwrite_customized: false
overwrite_not_customized: true
update_interval_days: 0
path: sites/default/files/translations
import_enabled: true

View File

@ -0,0 +1,6 @@
_core:
default_config_hash: 1fVNX_Yb83YivQ9Cq2q7tb71uHcy2Imbggy_Eiw0ljc
langcode: fr
absolute_file_urls: true
frontend_base_url: 'http://dev.caravane.fr'
frontend_routes_redirect: true

View File

@ -0,0 +1,6 @@
_core:
default_config_hash: UA1LGT2916TE3VyHCdi_cD-GPCb6ilm9KluygCKnqOI
send: false
log: true
verbose: true
langcode: fr

View File

@ -0,0 +1,4 @@
_core:
default_config_hash: ENUzSsLjtl0THWvptK2LZ7BJtRbb032hiy3VTvjR7Pw
override_parent_selector: false
langcode: fr

View File

@ -0,0 +1,12 @@
uuid: f31bf5ff-6090-489d-a619-637834465072
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: RDCkFL0NDt75Gwioooxo1iuA1S50xTVsBOgX__c6wTw
id: '403'
label: '403 access denied'
tags:
robots: noindex
canonical_url: '[site:url]'
shortlink: '[site:url]'

View File

@ -0,0 +1,11 @@
uuid: 57be16ad-fc5a-4227-a25e-0b6f0fa62047
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: puBstSLDz8mbaWU357zaqQDBGMGsJzG0j-TQNQkjg20
id: '404'
label: '404 page not found'
tags:
canonical_url: '[site:url]'
shortlink: '[site:url]'

View File

@ -0,0 +1,11 @@
uuid: 6e747ab2-3e01-45ee-bcf2-a39804303d02
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: 1noCXlegCr5HFehQRF1ViXy1jhU1jZ_sNN99a8Sj5jo
id: front
label: "Page d'accueil"
tags:
canonical_url: '[site:url]'
shortlink: '[site:url]'

View File

@ -0,0 +1,11 @@
uuid: 4e6aca65-fc98-4c16-84ed-0da88e6ad0cc
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: sL588ui1E_8-2c_UupwyYxcqX2OVyMFp3HTLbbFqvPc
id: global
label: Global
tags:
canonical_url: '[current-page:url]'
title: '[current-page:title] | [site:name]'

View File

@ -0,0 +1,12 @@
uuid: 4f9260c7-73eb-44ad-b87b-bb9006ee7c6b
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: rpwvgyEURXLz_JjgMCrkS1rUv-0k3L79BpO-ReN7fDI
id: node
label: Contenu
tags:
title: '[node:title] | [site:name]'
description: '[node:summary]'
canonical_url: '[node:url]'

View File

@ -0,0 +1,12 @@
uuid: d7c83ee5-2608-436b-a77b-7230a978b552
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: 92bXZdyYJ5xqukdfmGRr_CYcwm1vfuS8b8aJ7X_G7E0
id: taxonomy_term
label: 'Terme de taxonomie'
tags:
canonical_url: '[term:url]'
description: '[term:description]'
title: '[term:name] | [site:name]'

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