tags are used for drag and drop tables.
- *
- * Available variables:
- * - size: Optional. The number of indentations to create.
- */
-#}
-{% for i in 1..size if size > 0 %}
{% endfor %}
diff --git a/web/themes/contrib/mediteran/templates/admin/language-content-settings-table.html.twig b/web/themes/contrib/mediteran/templates/admin/language-content-settings-table.html.twig
deleted file mode 100644
index 5a8ba8c0..00000000
--- a/web/themes/contrib/mediteran/templates/admin/language-content-settings-table.html.twig
+++ /dev/null
@@ -1,14 +0,0 @@
-{#
-/**
- * @file
- * Theme override to display a language content settings table.
- *
- * Available variables:
- * - title: The title of the table.
- * - build: Table of content language settings.
- *
- * @see template_preprocess_language_content_settings_table()
- */
-#}
-
{{ title }}
-{{ build }}
diff --git a/web/themes/contrib/mediteran/templates/admin/language-negotiation-configure-form.html.twig b/web/themes/contrib/mediteran/templates/admin/language-negotiation-configure-form.html.twig
deleted file mode 100644
index 5029a65d..00000000
--- a/web/themes/contrib/mediteran/templates/admin/language-negotiation-configure-form.html.twig
+++ /dev/null
@@ -1,38 +0,0 @@
-{#
-/**
-* @file
-* Theme override for a language negotiation configuration form.
-*
-* Available variables:
-* - language_types: A list of language negotiation types. Each language type
-* contains the following:
-* - type: The machine name for the negotiation type.
-* - title: The language negotiation type name.
-* - description: A description for how the language negotiation type operates.
-* - configurable: A radio element to toggle the table.
-* - table: A draggable table for the language detection methods of this type.
-* - children: Remaining form items for the group.
-* - attributes: A list of HTML attributes for the wrapper element.
-* - children: Remaining form items for all groups.
-*
-* @see template_preprocess_language_negotiation_configure_form()
-*/
-#}
-{% for language_type in language_types %}
- {%
- set language_classes = [
- 'js-form-item',
- 'form-item',
- 'table-language-group',
- 'table-' ~ language_type.type ~ '-wrapper',
- ]
- %}
-
-
{{ language_type.title }}
-
{{ language_type.description }}
- {{ language_type.configurable }}
- {{ language_type.table }}
- {{ language_type.children }}
-
-{% endfor %}
-{{ children }}
diff --git a/web/themes/contrib/mediteran/templates/admin/locale-translation-last-check.html.twig b/web/themes/contrib/mediteran/templates/admin/locale-translation-last-check.html.twig
deleted file mode 100644
index 1c5ebd05..00000000
--- a/web/themes/contrib/mediteran/templates/admin/locale-translation-last-check.html.twig
+++ /dev/null
@@ -1,23 +0,0 @@
-{#
-/**
- * @file
- * Theme override for the last time we checked for update data.
- *
- * Available variables:
- * - last_checked: Whether or not locale updates have been checked before.
- * - time: The formatted time ago when the site last checked for available
- * updates.
- * - link: A link to manually check available updates.
- *
- * @see template_preprocess_locale_translation_last_check()
- */
-#}
-
-
- {% if last_checked %}
- {% trans %} Last checked: {{ time }} ago {% endtrans %}
- {% else %}
- {{ 'Last checked: never'|t }}
- {% endif %}
- ({{ link }})
-
diff --git a/web/themes/contrib/mediteran/templates/admin/locale-translation-update-info.html.twig b/web/themes/contrib/mediteran/templates/admin/locale-translation-update-info.html.twig
deleted file mode 100644
index 8e2bedee..00000000
--- a/web/themes/contrib/mediteran/templates/admin/locale-translation-update-info.html.twig
+++ /dev/null
@@ -1,57 +0,0 @@
-{#
-/**
- * @file
- * Theme override for displaying translation status information.
- *
- * Displays translation status information per language.
- *
- * Available variables:
- * - modules: A list of modules names that have available translation updates.
- * - updates: A list of available translation updates.
- * - not_found: A list of modules missing translation updates.
- *
- * @see template_preprocess_locale_translation_update_info()
- */
-#}
-
-
Show description
- {% if modules %}
- {% set module_list = modules|safe_join(', ') %}
-
{% trans %}Updates for: {{ module_list }}{% endtrans %}
- {% elseif not_found %}
-
- {%- trans -%}
- Missing translations for one project
- {%- plural not_found|length -%}
- Missing translations for @count projects
- {%- endtrans -%}
-
- {% endif %}
- {% if updates or not_found %}
-
- {% if updates %}
-
- {% for update in updates %}
- - {{ update.name }} ({{ update.timestamp|format_date('html_date') }})
- {% endfor %}
-
- {% endif %}
- {% if not_found %}
- {#
- Prefix the missing updates list if there is an available updates lists
- before it.
- #}
- {% if updates %}
- {{ 'Missing translations for:'|t }}
- {% endif %}
- {% if not_found %}
-
- {% for update in not_found %}
- - {{ update.name }} ({{ update.version|default('no version'|t) }}). {{ update.info }}
- {% endfor %}
-
- {% endif %}
- {% endif %}
-
- {% endif %}
-
diff --git a/web/themes/contrib/mediteran/templates/admin/maintenance-task-list.html.twig b/web/themes/contrib/mediteran/templates/admin/maintenance-task-list.html.twig
deleted file mode 100644
index 0fbeff94..00000000
--- a/web/themes/contrib/mediteran/templates/admin/maintenance-task-list.html.twig
+++ /dev/null
@@ -1,23 +0,0 @@
-{#
-/**
- * @file
- * Theme override for a list of maintenance tasks to perform.
- *
- * Available variables:
- * - tasks: A list of maintenance tasks to perform. Each item in the list has
- * the following variables:
- * - item: The maintenance task.
- * - attributes: HTML attributes for the maintenance task.
- * - status: (optional) Text describing the status of the maintenance task,
- * 'active' or 'done'.
- */
-#}
-
{{ 'Installation tasks'|t }}
-
-{% for task in tasks %}
- -
- {{ task.item }}
- {% if task.status %} ({{ task.status }}){% endif %}
-
-{% endfor %}
-
diff --git a/web/themes/contrib/mediteran/templates/admin/simpletest-result-summary.html.twig b/web/themes/contrib/mediteran/templates/admin/simpletest-result-summary.html.twig
deleted file mode 100644
index 55233256..00000000
--- a/web/themes/contrib/mediteran/templates/admin/simpletest-result-summary.html.twig
+++ /dev/null
@@ -1,20 +0,0 @@
-{#
-/**
- * @file
- * Theme override for simpletest result summaries.
- *
- * Available variables:
- * - label: An optional label to be rendered before the results.
- * - items: Pluralized summaries for each result type (number of passes, fails,
- * exceptions, and debug messages).
- * - pass: The number of passes.
- * - fail: The number of fails.
- * - exception: The number of exceptions.
- * - debug: The number of debug messages.
- *
- * @see template_preprocess_simpletest_result_summary()
- */
-#}
-
- {{ label }} {{ items|join(', ') }}
-
diff --git a/web/themes/contrib/mediteran/templates/admin/status-report-counter.html.twig b/web/themes/contrib/mediteran/templates/admin/status-report-counter.html.twig
deleted file mode 100644
index 13ab8a84..00000000
--- a/web/themes/contrib/mediteran/templates/admin/status-report-counter.html.twig
+++ /dev/null
@@ -1,26 +0,0 @@
-{#
-/**
- * @file
- * Theme override for status report counter.
- *
- * Available variables:
- * - amount: The number shown on counter.
- * - text: The text shown on counter.
- * - severity: The severity of the counter.
- *
- * @ingroup themable
- */
-#}
-{%
- set classes = [
- 'system-status-counter',
- 'system-status-counter--' ~ severity,
- ]
-%}
-
-
-
- {{ amount }} {{ text }}
- {{ text }} Details
-
-
diff --git a/web/themes/contrib/mediteran/templates/admin/status-report-general-info.html.twig b/web/themes/contrib/mediteran/templates/admin/status-report-general-info.html.twig
deleted file mode 100644
index 60ae15d2..00000000
--- a/web/themes/contrib/mediteran/templates/admin/status-report-general-info.html.twig
+++ /dev/null
@@ -1,100 +0,0 @@
-{#
-/**
- * @file
- * Theme override for status report general info.
- *
- * Available variables:
- * - drupal: The status of Drupal installation:
- * - value: The current status of Drupal installation.
- * - description: The description for current status of Drupal installation.
- * - cron: The status of cron:
- * - value: The current status of cron.
- * - description: The description for current status of cron.
- * - cron.run_cron: An array to render a button for running cron.
- * - database_system: The status of database system:
- * - value: The current status of database sytem.
- * - description: The description for current status of cron.
- * - database_system_version: The info about current database version:
- * - value: The current version of database.
- * - description: The description for current version of database.
- * - php: The current version of PHP:
- * - value: The status of currently installed PHP version.
- * - description: The description for current installed PHP version.
- * - php_memory_limit: The info about current PHP memory limit:
- * - value: The status of currently set PHP memory limit.
- * - description: The description for currently set PHP memory limit.
- * - webserver: The info about currently installed web server:
- * - value: The status of currently installed web server.
- * - description: The description for the status of currently installed web
- * server.
- */
-#}
-
-
-
-
-
-
-
{{ 'Drupal Version'|t }}
- {{ drupal.value }}
- {% if drupal.description %}
-
{{ drupal.description }}
- {% endif %}
-
-
-
-
-
-
{{ 'Last Cron Run'|t }}
- {{ cron.value }}
- {% if cron.run_cron %}
-
{{ cron.run_cron }}
- {% endif %}
- {% if cron.description %}
-
{{ cron.description }}
- {% endif %}
-
-
-
-
-
-
{{ 'Web Server'|t }}
- {{ webserver.value }}
- {% if webserver.description %}
-
{{ webserver.description }}
- {% endif %}
-
-
-
-
-
-
{{ 'PHP'|t }}
-
{{ 'Version'|t }}
{{ php.value }}
- {% if php.description %}
-
{{ php.description }}
- {% endif %}
-
-
{{ 'Memory limit'|t }}
{{ php_memory_limit.value }}
- {% if php_memory_limit.description %}
-
{{ php_memory_limit.description }}
- {% endif %}
-
-
-
-
-
-
{{ 'Database'|t }}
-
{{ 'Version'|t }}
{{ database_system_version.value }}
- {% if database_system_version.description %}
-
{{ database_system_version.description }}
- {% endif %}
-
-
{{ 'System'|t }}
{{ database_system.value }}
- {% if database_system.description %}
-
{{ database_system.description }}
- {% endif %}
-
-
-
-
-
diff --git a/web/themes/contrib/mediteran/templates/admin/status-report-grouped.html.twig b/web/themes/contrib/mediteran/templates/admin/status-report-grouped.html.twig
deleted file mode 100644
index 206fa608..00000000
--- a/web/themes/contrib/mediteran/templates/admin/status-report-grouped.html.twig
+++ /dev/null
@@ -1,50 +0,0 @@
-{#
-/**
- * @file
- * Theme override to display status report.
- *
- * - grouped_requirements: Contains grouped requirements.
- * Each group contains:
- * - title: The title of the group.
- * - type: The severity of the group.
- * - items: The requirement instances.
- * Each requirement item contains:
- * - title: The title of the requirement.
- * - value: (optional) The requirement's status.
- * - description: (optional) The requirement's description.
- * - severity_title: The title of the severity.
- * - severity_status: Indicates the severity status.
- */
-#}
-{{ attach_library('core/drupal.collapse') }}
-{{ attach_library('mediteran/drupal.responsive-detail') }}
-
-
- {% for group in grouped_requirements %}
-
-
{{ group.title }}
- {% for requirement in group.items %}
-
- {%
- set summary_classes = [
- 'system-status-report__status-title',
- group.type in ['warning', 'error'] ? 'system-status-report__status-icon system-status-report__status-icon--' ~ group.type
- ]
- %}
-
- {% if requirement.severity_title %}
- {{ requirement.severity_title }}
- {% endif %}
- {{ requirement.title }}
-
-
- {{ requirement.value }}
- {% if requirement.description %}
-
{{ requirement.description }}
- {% endif %}
-
-
- {% endfor %}
-
- {% endfor %}
-
diff --git a/web/themes/contrib/mediteran/templates/admin/status-report-page.html.twig b/web/themes/contrib/mediteran/templates/admin/status-report-page.html.twig
deleted file mode 100644
index 27e0d157..00000000
--- a/web/themes/contrib/mediteran/templates/admin/status-report-page.html.twig
+++ /dev/null
@@ -1,28 +0,0 @@
-{#
-/**
- * @file
- * Theme override for the status report page.
- *
- * Available variables:
- * - counters: The list of counter elements.
- * - general_info: A render array to create general info element.
- * - requirements: A render array to create requirements table.
- *
- * @see template_preprocess_status_report()
- */
-#}
-{% if counters|length == 3 %}
- {% set element_width_class = ' system-status-report-counters__item--third-width' %}
-{% elseif counters|length == 2 %}
- {% set element_width_class = ' system-status-report-counters__item--half-width' %}
-{% endif %}
-
- {% for counter in counters %}
-
- {{ counter }}
-
- {% endfor %}
-
-
-{{ general_info }}
-{{ requirements }}
diff --git a/web/themes/contrib/mediteran/templates/admin/status-report.html.twig b/web/themes/contrib/mediteran/templates/admin/status-report.html.twig
deleted file mode 100644
index 7f4c6005..00000000
--- a/web/themes/contrib/mediteran/templates/admin/status-report.html.twig
+++ /dev/null
@@ -1,39 +0,0 @@
-{#
-/**
- * @file
- * Theme override for the status report.
- *
- * Available variables:
- * - requirements: Contains multiple requirement instances.
- * Each requirement contains:
- * - title: The title of the requirement.
- * - value: (optional) The requirement's status.
- * - description: (optional) The requirement's description.
- * - severity_title: The title of the severity.
- * - severity_status: Indicates the severity status.
- *
- * @see template_preprocess_status_report()
- */
-#}
-
-
- {% for requirement in requirements %}
-
- {% if requirement.severity_status in ['warning', 'error'] %}
- |
- {{ requirement.severity_title }}
- {% else %}
- |
- {% endif %}
- {{ requirement.title }}
- |
-
- {{ requirement.value }}
- {% if requirement.description %}
- {{ requirement.description }}
- {% endif %}
- |
-
- {% endfor %}
-
-
diff --git a/web/themes/contrib/mediteran/templates/admin/system-admin-index.html.twig b/web/themes/contrib/mediteran/templates/admin/system-admin-index.html.twig
deleted file mode 100644
index 23178ee0..00000000
--- a/web/themes/contrib/mediteran/templates/admin/system-admin-index.html.twig
+++ /dev/null
@@ -1,25 +0,0 @@
-{#
-/**
- * @file
- * Theme override for the admin index page.
- *
- * Available variables:
- * - system_compact_link: Themed link to toggle compact view.
- * - containers: A list of administrative containers keyed by position: left or
- * right. Each container in the list contains:
- * - blocks: A list of administrative blocks, rendered
- * through admin-block.html.twig.
- *
- * @see template_preprocess_system_admin_index()
- */
-#}
-
- {{ system_compact_link }}
- {% for position, blocks in containers %}
-
- {% for block in blocks %}
- {{ block }}
- {% endfor %}
-
- {% endfor %}
-
diff --git a/web/themes/contrib/mediteran/templates/admin/system-config-form.html.twig b/web/themes/contrib/mediteran/templates/admin/system-config-form.html.twig
deleted file mode 100644
index 011128ca..00000000
--- a/web/themes/contrib/mediteran/templates/admin/system-config-form.html.twig
+++ /dev/null
@@ -1,15 +0,0 @@
-{#
-/**
- * @file
- * Theme override for a system settings form.
- *
- * This template will be used when a system config form specifies 'config_form'
- * as its #theme callback. Otherwise, by default, system config forms will be
- * themed by form.html.twig. This does not alter the appearance of a form at all,
- * but is provided as a convenience for themers.
- *
- * Available variables:
- * - form: The confirm form.
- */
-#}
-{{ form }}
diff --git a/web/themes/contrib/mediteran/templates/admin/system-modules-details.html.twig b/web/themes/contrib/mediteran/templates/admin/system-modules-details.html.twig
deleted file mode 100644
index 618b58a2..00000000
--- a/web/themes/contrib/mediteran/templates/admin/system-modules-details.html.twig
+++ /dev/null
@@ -1,74 +0,0 @@
-{#
-/**
- * @file
- * Theme override for the modules listing page.
- *
- * Displays a list of all packages in a project.
- *
- * Available variables:
- * - modules: Contains multiple module instances. Each module contains:
- * - attributes: Attributes on the row.
- * - checkbox: A checkbox for enabling the module.
- * - name: The human-readable name of the module.
- * - id: A unique identifier for interacting with the details element.
- * - enable_id: A unique identifier for interacting with the checkbox element.
- * - description: The description of the module.
- * - machine_name: The module's machine name.
- * - version: Information about the module version.
- * - requires: A list of modules that this module requires.
- * - required_by: A list of modules that require this module.
- * - links: A list of administration links provided by the module.
- *
- * @see template_preprocess_system_modules_details()
- */
-#}
-
-
-
- | {{ 'Installed'|t }} |
- {{ 'Name'|t }} |
- {{ 'Description'|t }} |
-
-
-
- {% for module in modules %}
- {% set zebra = cycle(['odd', 'even'], loop.index0) %}
-
- |
- {{ module.checkbox }}
- |
-
-
- |
-
-
- {{ module.description }}
-
-
-
- {{ 'Machine name: @machine-name'|t({'@machine-name': module.machine_name }) }}
- {% if module.version %}
- {{ 'Version: @module-version'|t({'@module-version': module.version }) }}
- {% endif %}
- {% if module.requires %}
- {{ 'Requires: @module-list'|t({'@module-list': module.requires }) }}
- {% endif %}
- {% if module.required_by %}
- {{ 'Required by: @module-list'|t({'@module-list': module.required_by }) }}
- {% endif %}
-
- {% if module.links %}
-
- {% for link_type in ['help', 'permissions', 'configure'] %}
- {{ module.links[link_type] }}
- {% endfor %}
-
- {% endif %}
-
-
-
- |
-
- {% endfor %}
-
-
diff --git a/web/themes/contrib/mediteran/templates/admin/system-modules-uninstall.html.twig b/web/themes/contrib/mediteran/templates/admin/system-modules-uninstall.html.twig
deleted file mode 100644
index 35567097..00000000
--- a/web/themes/contrib/mediteran/templates/admin/system-modules-uninstall.html.twig
+++ /dev/null
@@ -1,73 +0,0 @@
-{#
-/**
- * @file
- * Theme override for the modules uninstall page.
- *
- * Available variables:
- * - form: The modules uninstall form.
- * - modules: Contains multiple module instances. Each module contains:
- * - attributes: Attributes on the row.
- * - module_name: The name of the module.
- * - checkbox: A checkbox for uninstalling the module.
- * - checkbox_id: A unique identifier for interacting with the checkbox
- * element.
- * - name: The human-readable name of the module.
- * - description: The description of the module.
- * - disabled_reasons: (optional) A list of reasons why this module cannot be
- * uninstalled.
- *
- * @see template_preprocess_system_modules_uninstall()
- */
-#}
-{{ form.filters }}
-
-
-
-
- | {{ 'Uninstall'|t }} |
- {{ 'Name'|t }} |
- {{ 'Description'|t }} |
-
-
-
- {% for module in modules %}
- {% set zebra = cycle(['odd', 'even'], loop.index0) -%}
-
- |
- {{- module.checkbox -}}
- |
-
-
- |
-
- {{ module.description }}
- {% if module.reasons_count > 0 %}
-
- {%- trans -%}
- The following reason prevents {{ module.module_name }} from being uninstalled:
- {%- plural module.reasons_count -%}
- The following reasons prevent {{ module.module_name }} from being uninstalled:
- {%- endtrans %}
-
-
- {%- for reason in module.validation_reasons -%}
- - {{ reason }}
- {%- endfor -%}
- {%- if module.required_by -%}
- - {{ 'Required by: @module-list'|t({'@module-list': module.required_by|safe_join(', ') }) }}
- {%- endif -%}
-
-
-
- {% endif %}
- |
-
- {% else %}
-
- | {{ 'No modules are available to uninstall.'|t }} |
-
- {% endfor %}
-
-
-
-{{ form|without('filters', 'modules', 'uninstall') }}
diff --git a/web/themes/contrib/mediteran/templates/admin/system-themes-page.html.twig b/web/themes/contrib/mediteran/templates/admin/system-themes-page.html.twig
deleted file mode 100644
index 5a23f1a1..00000000
--- a/web/themes/contrib/mediteran/templates/admin/system-themes-page.html.twig
+++ /dev/null
@@ -1,74 +0,0 @@
-{#
-/**
- * @file
- * Theme override for the Appearance page.
- *
- * Available variables:
- * - attributes: HTML attributes for the main container.
- * - theme_groups: A list of theme groups. Each theme group contains:
- * - attributes: HTML attributes specific to this theme group.
- * - title: Title for the theme group.
- * - state: State of the theme group, e.g. installed or uninstalled.
- * - themes: A list of themes within the theme group. Each theme contains:
- * - attributes: HTML attributes specific to this theme.
- * - screenshot: A screenshot representing the theme.
- * - description: Description of the theme.
- * - name: Theme name.
- * - version: The theme's version number.
- * - is_default: Boolean indicating whether the theme is the default theme
- * or not.
- * - is_admin: Boolean indicating whether the theme is the admin theme or
- * not.
- * - notes: Identifies what context this theme is being used in, e.g.,
- * default theme, admin theme.
- * - incompatible: Text describing any compatibility issues.
- * - operations: A list of operation links, e.g., Settings, Enable, Disable,
- * etc. these links should only be displayed if the theme is compatible.
- *
- * @see template_preprocess_system_themes_page()
- */
-#}
-
- {% for theme_group in theme_groups %}
- {%
- set theme_group_classes = [
- 'system-themes-list',
- 'system-themes-list-' ~ theme_group.state,
- 'clearfix',
- ]
- %}
-
-
- {% for theme in theme_group.themes %}
- {%
- set theme_classes = [
- theme.is_default ? 'theme-default',
- theme.is_admin ? 'theme-admin',
- 'theme-selector',
- 'clearfix',
- ]
- %}
-
- {% if theme.screenshot %}
- {{ theme.screenshot }}
- {% endif %}
-
-
-
{{ theme.description }}
- {# Display operation links if the theme is compatible. #}
- {% if theme.incompatible %}
-
{{ theme.incompatible }}
- {% else %}
- {{ theme.operations }}
- {% endif %}
-
-
- {% endfor %}
-
- {% endfor %}
-
diff --git a/web/themes/contrib/mediteran/templates/admin/tablesort-indicator.html.twig b/web/themes/contrib/mediteran/templates/admin/tablesort-indicator.html.twig
deleted file mode 100644
index 135a76c2..00000000
--- a/web/themes/contrib/mediteran/templates/admin/tablesort-indicator.html.twig
+++ /dev/null
@@ -1,24 +0,0 @@
-{#
-/**
- * @file
- * Theme override for displaying a tablesort indicator.
- *
- * Available variables:
- * - style: Either 'asc' or 'desc', indicating the sorting direction.
- */
-#}
-{%
- set classes = [
- 'tablesort',
- 'tablesort--' ~ style,
- ]
-%}
-
-
- {% if style == 'asc' -%}
- {{ 'Sort ascending'|t }}
- {% else -%}
- {{ 'Sort descending'|t }}
- {% endif %}
-
-
diff --git a/web/themes/contrib/mediteran/templates/admin/update-last-check.html.twig b/web/themes/contrib/mediteran/templates/admin/update-last-check.html.twig
deleted file mode 100644
index b94d6dce..00000000
--- a/web/themes/contrib/mediteran/templates/admin/update-last-check.html.twig
+++ /dev/null
@@ -1,21 +0,0 @@
-{#
-/**
- * @file
- * Theme override for the last time update data was checked.
- *
- * Available variables:
- * - last: The timestamp that the site was last checked for updates.
- * - time: The formatted time since the site last checked for updates.
- * - link: A link to check for updates manually.
- *
- * @see template_preprocess_update_last_check()
- */
-#}
-
- {% if last %}
- {{ 'Last checked: @time ago'|t({'@time': time}) }}
- {% else %}
- {{ 'Last checked: never'|t }}
- {% endif %}
- ({{ link }})
-
diff --git a/web/themes/contrib/mediteran/templates/admin/update-project-status.html.twig b/web/themes/contrib/mediteran/templates/admin/update-project-status.html.twig
deleted file mode 100644
index 5a6d2ece..00000000
--- a/web/themes/contrib/mediteran/templates/admin/update-project-status.html.twig
+++ /dev/null
@@ -1,104 +0,0 @@
-{#
-/**
- * @file
- * Theme override for the project status report.
- *
- * Available variables:
- * - title: The project title.
- * - url: The project url.
- * - status: The project status.
- * - label: The project status label.
- * - attributes: HTML attributes for the project status.
- * - reason: The reason you should update the project.
- * - icon: The project status version indicator icon.
- * - existing_version: The version of the installed project.
- * - versions: The available versions of the project.
- * - install_type: The type of project (e.g., dev).
- * - datestamp: The date/time of a project version's release.
- * - extras: HTML attributes and additional information about the project.
- * - attributes: HTML attributes for the extra item.
- * - label: The label for an extra item.
- * - data: The data about an extra item.
- * - includes: The projects within the project.
- * - disabled: The currently disabled projects in the project.
- *
- * @see template_preprocess_update_project_status()
- */
-#}
-{%
- set status_classes = [
- project.status == constant('UPDATE_NOT_SECURE') ? 'project-update__status--security-error',
- project.status == constant('UPDATE_REVOKED') ? 'project-update__status--revoked',
- project.status == constant('UPDATE_NOT_SUPPORTED') ? 'project-update__status--not-supported',
- project.status == constant('UPDATE_NOT_CURRENT') ? 'project-update__status--not-current',
- project.status == constant('UPDATE_CURRENT') ? 'project-update__status--current',
- ]
-%}
-
- {%- if status.label -%}
- {{ status.label }}
- {%- else -%}
- {{ status.reason }}
- {%- endif %}
-
- {{ status.icon }}
-
-
-
-
- {%- if url -%}
-
{{ title }}
- {%- else -%}
- {{ title }}
- {%- endif %}
- {{ existing_version }}
- {% if install_type == 'dev' and datestamp %}
-
({{ datestamp }})
- {% endif %}
-
-
-{% if versions %}
- {% for version in versions %}
- {{ version }}
- {% endfor %}
-{% endif %}
-
-{%
- set extra_classes = [
- project.status == constant('UPDATE_NOT_SECURE') ? 'project-not-secure',
- project.status == constant('UPDATE_REVOKED') ? 'project-revoked',
- project.status == constant('UPDATE_NOT_SUPPORTED') ? 'project-not-supported',
- ]
-%}
-
- {% if extras %}
-
- {% endif %}
- {% set includes = includes|join(', ') %}
- {% if disabled %}
- {{ 'Includes:'|t }}
-
- -
- {% trans %}
- Enabled: {{ includes|placeholder }}
- {% endtrans %}
-
- -
- {% set disabled = disabled|join(', ') %}
- {% trans %}
- Disabled: {{ disabled|placeholder }}
- {% endtrans %}
-
-
- {% else %}
- {% trans %}
- Includes: {{ includes|placeholder }}
- {% endtrans %}
- {% endif %}
-
diff --git a/web/themes/contrib/mediteran/templates/admin/update-report.html.twig b/web/themes/contrib/mediteran/templates/admin/update-report.html.twig
deleted file mode 100644
index b8692f69..00000000
--- a/web/themes/contrib/mediteran/templates/admin/update-report.html.twig
+++ /dev/null
@@ -1,25 +0,0 @@
-{#
-/**
- * @file
- * Theme override for the project status report.
- *
- * Available variables:
- * - last_checked: Themed last time update data was checked.
- * - no_updates_message: Message when there are no project updates.
- * - project_types: A list of project types.
- * - label: The project type label.
- * - table: The project status table.
- *
- * @see template_preprocess_update_report()
- */
-#}
-{{ last_checked }}
-
-{% for project_type in project_types %}
-
-
{{ project_type.label }}
- {{ project_type.table }}
-
-{% else %}
-
{{ no_updates_message }}
-{% endfor %}
diff --git a/web/themes/contrib/mediteran/templates/admin/update-version.html.twig b/web/themes/contrib/mediteran/templates/admin/update-version.html.twig
deleted file mode 100644
index 958db44b..00000000
--- a/web/themes/contrib/mediteran/templates/admin/update-version.html.twig
+++ /dev/null
@@ -1,34 +0,0 @@
-{#
-/**
- * @file
- * Theme override for the version display of a project.
- *
- * Available variables:
- * - attributes: HTML attributes suitable for a container element.
- * - title: The title of the project.
- * - version: A list of data about the latest released version, containing:
- * - version: The version number.
- * - date: The date of the release.
- * - download_link: The URL for the downloadable file.
- * - release_link: The URL for the release notes.
- */
-#}
-
diff --git a/web/themes/contrib/mediteran/templates/admin/views-ui-build-group-filter-form.html.twig b/web/themes/contrib/mediteran/templates/admin/views-ui-build-group-filter-form.html.twig
deleted file mode 100644
index 69e32cab..00000000
--- a/web/themes/contrib/mediteran/templates/admin/views-ui-build-group-filter-form.html.twig
+++ /dev/null
@@ -1,55 +0,0 @@
-{#
-/**
- * @file
- * Theme override for Views UI build group filter form.
- *
- * Available variables:
- * - form: A render element representing the form. Contains the following:
- * - form_description: The exposed filter's description.
- * - expose_button: The button to toggle the expose filter form.
- * - group_button: Toggle options between single and grouped filters.
- * - label: A filter label input field.
- * - description: A filter description field.
- * - value: The filters available values.
- * - optional: A checkbox to require this filter or not.
- * - remember: A checkbox to remember selected filter value(s) (per user).
- * - widget: Radio Buttons to select the filter widget.
- * - add_group: A button to add another row to the table.
- * - more: A details element for additional field exposed filter fields.
- * - table: A rendered table element of the group filter form.
- *
- * @see template_preprocess_views_ui_build_group_filter_form()
- */
-#}
-{{ form.form_description }}
-{{ form.expose_button }}
-{{ form.group_button }}
-
- {{ form.optional }}
- {{ form.remember }}
-
-
- {{ form.widget }}
- {{ form.label }}
- {{ form.description }}
-
-{#
- Render the rest of the form elements excluding elements that are rendered
- elsewhere.
-#}
-{{ form|without(
- 'form_description',
- 'expose_button',
- 'group_button',
- 'optional',
- 'remember',
- 'widget',
- 'label',
- 'description',
- 'add_group',
- 'more'
- )
-}}
-{{ table }}
-{{ form.add_group }}
-{{ form.more }}
diff --git a/web/themes/contrib/mediteran/templates/admin/views-ui-container.html.twig b/web/themes/contrib/mediteran/templates/admin/views-ui-container.html.twig
deleted file mode 100644
index ed719e44..00000000
--- a/web/themes/contrib/mediteran/templates/admin/views-ui-container.html.twig
+++ /dev/null
@@ -1,11 +0,0 @@
-{#
-/**
- * @file
- * Theme override for a generic views UI container/wrapper.
- *
- * Available variables:
- * - attributes: HTML attributes to apply to the container element.
- * - children: The remaining elements such as dropbuttons and tabs.
- */
-#}
-
{{ children }}
diff --git a/web/themes/contrib/mediteran/templates/admin/views-ui-display-tab-bucket.html.twig b/web/themes/contrib/mediteran/templates/admin/views-ui-display-tab-bucket.html.twig
deleted file mode 100644
index 32dbdd7e..00000000
--- a/web/themes/contrib/mediteran/templates/admin/views-ui-display-tab-bucket.html.twig
+++ /dev/null
@@ -1,33 +0,0 @@
-{#
-/**
- * @file
- * Theme override for each "box" on the display query edit screen.
- *
- * Available variables:
- * - attributes: HTML attributes to apply to the container element.
- * - actions: Action links such as "Add", "And/Or, Rearrange" for the content.
- * - title: The title of the bucket, e.g. "Fields", "Filter Criteria", etc.
- * - content: Content items such as fields or settings in this container.
- * - name: The name of the bucket, e.g. "Fields", "Filter Criteria", etc.
- * - overridden: A boolean indicating the setting has been overridden from the
- * default.
- *
- * @see template_preprocess_views_ui_display_tab_bucket()
- */
-#}
-{%
- set classes = [
- 'views-ui-display-tab-bucket',
- name ? name|clean_class,
- overridden ? 'overridden',
- ]
-%}
-
- {% if title -%}
-
{{ title }}
- {%- endif %}
- {% if actions -%}
- {{ actions }}
- {%- endif %}
- {{ content }}
-
diff --git a/web/themes/contrib/mediteran/templates/admin/views-ui-display-tab-setting.html.twig b/web/themes/contrib/mediteran/templates/admin/views-ui-display-tab-setting.html.twig
deleted file mode 100644
index 1877777d..00000000
--- a/web/themes/contrib/mediteran/templates/admin/views-ui-display-tab-setting.html.twig
+++ /dev/null
@@ -1,34 +0,0 @@
-{#
-/**
- * @file
- * Theme override for Views UI display tab settings.
- *
- * Template for each row inside the "boxes" on the display query edit screen.
- *
- * Available variables:
- * - attributes: HTML attributes such as class for the container.
- * - description: The description or label for this setting.
- * - settings_links: A list of links for this setting.
- * - defaulted: A boolean indicating the setting is in its default state.
- * - overridden: A boolean indicating the setting has been overridden from the
- * default.
- *
- * @see template_preprocess_views_ui_display_tab_setting()
- */
-#}
-{%
- set classes = [
- 'views-display-setting',
- 'views-ui-display-tab-setting',
- defaulted ? 'defaulted',
- overridden ? 'overridden',
-]
-%}
-
- {% if description -%}
- {{ description }}
- {%- endif %}
- {% if settings_links %}
- {{ settings_links|safe_join(' | ') }}
- {% endif %}
-
diff --git a/web/themes/contrib/mediteran/templates/admin/views-ui-expose-filter-form.html.twig b/web/themes/contrib/mediteran/templates/admin/views-ui-expose-filter-form.html.twig
deleted file mode 100644
index a23b6e22..00000000
--- a/web/themes/contrib/mediteran/templates/admin/views-ui-expose-filter-form.html.twig
+++ /dev/null
@@ -1,65 +0,0 @@
-{#
-/**
- * @file
- * Theme override for exposed filter form.
- *
- * Available variables:
- * - form_description: The exposed filter's description.
- * - expose_button: The button to toggle the expose filter form.
- * - group_button: Toggle options between single and grouped filters.
- * - required: A checkbox to require this filter or not.
- * - label: A filter label input field.
- * - description: A filter description field.
- * - operator: The operators for how the filters value should be treated.
- * - #type: The operator type.
- * - value: The filters available values.
- * - use_operator: Checkbox to allow the user to expose the operator.
- * - more: A details element for additional field exposed filter fields.
- */
-#}
-{{ form.form_description }}
-{{ form.expose_button }}
-{{ form.group_button }}
-{{ form.required }}
-{{ form.label }}
-{{ form.description }}
-
-{{ form.operator }}
-{{ form.value }}
-
-{% if form.use_operator %}
-
- {{ form.use_operator }}
-
-{% endif %}
-
-{#
- Collect a list of elements printed to exclude when printing the
- remaining elements.
-#}
-{% set remaining_form = form|without(
- 'form_description',
- 'expose_button',
- 'group_button',
- 'required',
- 'label',
- 'description',
- 'operator',
- 'value',
- 'use_operator',
- 'more'
- )
-%}
-
-{#
- Only output the right column markup if there's a left column to begin with.
-#}
-{% if form.operator['#type'] %}
-
- {{ remaining_form }}
-
-{% else %}
- {{ remaining_form }}
-{% endif %}
-
-{{ form.more }}
diff --git a/web/themes/contrib/mediteran/templates/admin/views-ui-rearrange-filter-form.html.twig b/web/themes/contrib/mediteran/templates/admin/views-ui-rearrange-filter-form.html.twig
deleted file mode 100644
index e38d1323..00000000
--- a/web/themes/contrib/mediteran/templates/admin/views-ui-rearrange-filter-form.html.twig
+++ /dev/null
@@ -1,25 +0,0 @@
-{#
-/**
- * @file
- * Theme override for Views UI rearrange filter form.
- *
- * Available variables:
- * - form: A render element representing the form.
- * - grouping: A flag whether or not there is more than one group.
- * - ungroupable_table: The ungroupable filter table.
- * - table: The groupable filter table.
- *
- * @see template_preprocess_views_ui_rearrange_filter_form()
- */
-#}
-{{ form.override }}
-
- {% if grouping %}
- {{ form.filter_groups.operator }}
- {% else %}
- {{ form.filter_groups.groups.0 }}
- {% endif %}
- {{ ungroupable_table }}
- {{ table }}
-
-{{ form|without('override', 'filter_groups', 'remove_groups', 'filters') }}
diff --git a/web/themes/contrib/mediteran/templates/admin/views-ui-style-plugin-table.html.twig b/web/themes/contrib/mediteran/templates/admin/views-ui-style-plugin-table.html.twig
deleted file mode 100644
index 2295390c..00000000
--- a/web/themes/contrib/mediteran/templates/admin/views-ui-style-plugin-table.html.twig
+++ /dev/null
@@ -1,16 +0,0 @@
-{#
-/**
- * @file
- * Theme override for the settings of a table style views display.
- *
- * Available variables:
- * - table: A table of options for each field in this display.
- * - form: Any remaining form fields not included in the table.
- * - description_markup: An overview for the settings of this display.
- *
- * @see template_preprocess_views_ui_style_plugin_table()
- */
-#}
-{{ form.description_markup }}
-{{ table }}
-{{ form }}
diff --git a/web/themes/contrib/mediteran/templates/admin/views-ui-view-displays-list.html.twig b/web/themes/contrib/mediteran/templates/admin/views-ui-view-displays-list.html.twig
deleted file mode 100644
index e6e5b021..00000000
--- a/web/themes/contrib/mediteran/templates/admin/views-ui-view-displays-list.html.twig
+++ /dev/null
@@ -1,22 +0,0 @@
-{#
-/**
- * @file
- * Theme override for views displays on the views listing page.
- *
- * Available variables:
- * - displays: Contains multiple display instances. Each display contains:
- * - display: Display name.
- * - path: Path to display, if any.
- */
-#}
-
- {% for display in displays %}
- -
- {% if display.path %}
- {{ display.display }} ({{ display.path }})
- {% else %}
- {{ display.display }}
- {% endif %}
-
- {% endfor %}
-
diff --git a/web/themes/contrib/mediteran/templates/admin/views-ui-view-info.html.twig b/web/themes/contrib/mediteran/templates/admin/views-ui-view-info.html.twig
deleted file mode 100644
index dc8f7609..00000000
--- a/web/themes/contrib/mediteran/templates/admin/views-ui-view-info.html.twig
+++ /dev/null
@@ -1,26 +0,0 @@
-{#
-/**
- * @file
- * Theme override for basic administrative info about a View.
- *
- * Available variables:
- * - displays: List of displays.
- */
-#}
-
{{ view.label }}
-
- {% if displays %}
- {% trans %}
- Display
- {% plural displays %}
- Displays
- {% endtrans %}:
- {{ displays|safe_join(', ') }}
- {% else %}
- {{ 'None'|t }}
- {% endif %}
-
-
- {{ 'Machine name:'|t }}
- {{ view.id }}
-
diff --git a/web/themes/contrib/mediteran/templates/admin/views-ui-view-preview-section.html.twig b/web/themes/contrib/mediteran/templates/admin/views-ui-view-preview-section.html.twig
deleted file mode 100644
index c2c83bd1..00000000
--- a/web/themes/contrib/mediteran/templates/admin/views-ui-view-preview-section.html.twig
+++ /dev/null
@@ -1,18 +0,0 @@
-{#
-/**
- * @file
- * Theme override for a views UI preview section.
- *
- * Available variables:
- * - title: The human readable section title.
- * - links: A list of contextual links.
- * - content: The content for this section preview.
- *
- * @see template_preprocess_views_ui_view_preview_section()
- */
-#}
-
{{ title }}
-{% if links %}
-
{{ links }}
-{% endif %}
-
{{ content }}
diff --git a/web/themes/contrib/mediteran/templates/admin/views-ui-views-listing-table.html.twig b/web/themes/contrib/mediteran/templates/admin/views-ui-views-listing-table.html.twig
deleted file mode 100644
index bc12a0a6..00000000
--- a/web/themes/contrib/mediteran/templates/admin/views-ui-views-listing-table.html.twig
+++ /dev/null
@@ -1,47 +0,0 @@
-{#
-/**
- * @file
- * Theme override for views listing table.
- *
- * Available variables:
- * - headers: Contains table headers.
- * - rows: Contains multiple rows. Each row contains:
- * - view_name: The human-readable name of the view.
- * - machine_name: Machine name of the view.
- * - description: The description of the view.
- * - displays: List of displays attached to the view.
- * - operations: List of available operations.
- *
- * @see template_preprocess_views_ui_views_listing_table()
- */
-#}
-
-
-
- {% for header in headers %}
- | {{ header.data }} |
- {% endfor %}
-
-
-
- {% for row in rows %}
-
-
- {{ row.data.view_name.data }}
- |
-
- {{ row.data.machine_name.data }}
- |
-
- {{ row.data.description.data }}
- |
-
- {{ row.data.displays.data }}
- |
-
- {{ row.data.operations.data }}
- |
-
- {% endfor %}
-
-
diff --git a/web/themes/contrib/mediteran/templates/block/block--local-actions-block.html.twig b/web/themes/contrib/mediteran/templates/block/block--local-actions-block.html.twig
deleted file mode 100644
index 97df94b6..00000000
--- a/web/themes/contrib/mediteran/templates/block/block--local-actions-block.html.twig
+++ /dev/null
@@ -1,12 +0,0 @@
-{% extends "block.html.twig" %}
-{#
-/**
- * @file
- * Theme override for local actions (primary admin actions.)
- */
-#}
-{% block content %}
- {% if content %}
-
- {% endif %}
-{% endblock %}
diff --git a/web/themes/contrib/mediteran/templates/block/block--local-tasks-block.html.twig b/web/themes/contrib/mediteran/templates/block/block--local-tasks-block.html.twig
deleted file mode 100644
index 0f25f59d..00000000
--- a/web/themes/contrib/mediteran/templates/block/block--local-tasks-block.html.twig
+++ /dev/null
@@ -1,14 +0,0 @@
-{% extends "block.html.twig" %}
-{#
-/**
- * @file
- * Theme override for tabs.
- */
-#}
-{% block content %}
- {% if content %}
-
- {% endif %}
-{% endblock %}
diff --git a/web/themes/contrib/mediteran/templates/block/block--search-form-block.html.twig b/web/themes/contrib/mediteran/templates/block/block--search-form-block.html.twig
deleted file mode 100644
index 667202fb..00000000
--- a/web/themes/contrib/mediteran/templates/block/block--search-form-block.html.twig
+++ /dev/null
@@ -1,45 +0,0 @@
-{#
-/**
- * @file
- * Theme override for the search form block.
- *
- * Available variables:
- * - plugin_id: The ID of the block implementation.
- * - label: The configured label of the block if visible.
- * - configuration: A list of the block's configuration values, including:
- * - label: The configured label for the block.
- * - label_display: The display settings for the label.
- * - provider: The module or other provider that provided this block plugin.
- * - Block plugin specific settings will also be stored here.
- * - content: The content of this block.
- * - attributes: A list HTML attributes populated by modules, intended to
- * be added to the main container tag of this template. Includes:
- * - id: A valid HTML ID and guaranteed unique.
- * - title_attributes: Same as attributes, except applied to the main title
- * tag that appears in the template.
- * - title_prefix: Additional output populated by modules, intended to be
- * displayed in front of the main title tag that appears in the template.
- * - title_suffix: Additional output populated by modules, intended to be
- * displayed after the main title tag that appears in the template.
- *
- * @see template_preprocess_block()
- * @see search_preprocess_block()
- */
-#}
-{%
- set classes = [
- 'block',
- 'block-search',
- 'container-inline',
- ]
-%}
-
- {{ title_prefix }}
- {% if label %}
-
{{ label }}
- {% endif %}
- {{ title_suffix }}
- {% block content %}
- {{ content }}
- {% endblock %}
-
diff --git a/web/themes/contrib/mediteran/templates/block/block--system-branding-block.html.twig b/web/themes/contrib/mediteran/templates/block/block--system-branding-block.html.twig
deleted file mode 100644
index 7c3b7dea..00000000
--- a/web/themes/contrib/mediteran/templates/block/block--system-branding-block.html.twig
+++ /dev/null
@@ -1,30 +0,0 @@
-{% extends "block.html.twig" %}
-{#
-/**
- * @file
- * Theme override for a branding block.
- *
- * Each branding element variable (logo, name, slogan) is only available if
- * enabled in the block configuration.
- *
- * Available variables:
- * - site_logo: Logo for site as defined in Appearance or theme settings.
- * - site_name: Name for site as defined in Site information settings.
- * - site_slogan: Slogan for site as defined in Site information settings.
- */
-#}
-{% block content %}
- {% if site_logo %}
-
-
-
- {% endif %}
- {% if site_name %}
-
- {% endif %}
- {% if site_slogan %}
-
{{ site_slogan }}
- {% endif %}
-{% endblock %}
diff --git a/web/themes/contrib/mediteran/templates/block/block--system-menu-block.html.twig b/web/themes/contrib/mediteran/templates/block/block--system-menu-block.html.twig
deleted file mode 100644
index 407f8403..00000000
--- a/web/themes/contrib/mediteran/templates/block/block--system-menu-block.html.twig
+++ /dev/null
@@ -1,56 +0,0 @@
-{#
-/**
- * @file
- * Theme override for a menu block.
- *
- * Available variables:
- * - plugin_id: The ID of the block implementation.
- * - label: The configured label of the block if visible.
- * - configuration: A list of the block's configuration values.
- * - label: The configured label for the block.
- * - label_display: The display settings for the label.
- * - provider: The module or other provider that provided this block plugin.
- * - Block plugin specific settings will also be stored here.
- * - content: The content of this block.
- * - attributes: HTML attributes for the containing element.
- * - id: A valid HTML ID and guaranteed unique.
- * - title_attributes: HTML attributes for the title element.
- * - content_attributes: HTML attributes for the content element.
- * - title_prefix: Additional output populated by modules, intended to be
- * displayed in front of the main title tag that appears in the template.
- * - title_suffix: Additional output populated by modules, intended to be
- * displayed after the main title tag that appears in the template.
- *
- * Headings should be used on navigation menus that consistently appear on
- * multiple pages. When this menu block's label is configured to not be
- * displayed, it is automatically made invisible using the 'visually-hidden' CSS
- * class, which still keeps it visible for screen-readers and assistive
- * technology. Headings allow screen-reader and keyboard only users to navigate
- * to or skip the links.
- * See http://juicystudio.com/article/screen-readers-display-none.php and
- * http://www.w3.org/TR/WCAG-TECHS/H42.html for more information.
- */
-#}
-{%
- set classes = [
- 'block',
- 'block-menu',
- 'navigation',
- 'menu--' ~ derivative_plugin_id|clean_class,
- ]
-%}
-{% set heading_id = attributes.id ~ '-menu'|clean_id %}
-
diff --git a/web/themes/contrib/mediteran/templates/block/block--system-messages-block.html.twig b/web/themes/contrib/mediteran/templates/block/block--system-messages-block.html.twig
deleted file mode 100644
index ef2e3ac7..00000000
--- a/web/themes/contrib/mediteran/templates/block/block--system-messages-block.html.twig
+++ /dev/null
@@ -1,13 +0,0 @@
-{#
-/**
- * @file
- * Theme override for the messages block.
- *
- * Removes wrapper elements from block so that empty block does not appear when
- * there are no messages.
- *
- * Available variables:
- * - content: The content of this block.
- */
-#}
-{{ content }}
diff --git a/web/themes/contrib/mediteran/templates/block/block-content-add-list.html.twig b/web/themes/contrib/mediteran/templates/block/block-content-add-list.html.twig
deleted file mode 100644
index d6e0a168..00000000
--- a/web/themes/contrib/mediteran/templates/block/block-content-add-list.html.twig
+++ /dev/null
@@ -1,26 +0,0 @@
-{#
-/**
- * @file
- * Theme implementation to display a list of custom block types.
- *
- * Displays the list of available custom block types for creation.
- *
- * Available variables:
- * - types: A collection of all the available custom block types.
- * Each type contains:
- * - url: A link to add a block of this type.
- * - description: A description of this custom block type.
- * - label: The title of the custom block type.
- * - path: A path for the link to add a block of this type.
- *
- * @see template_preprocess_block_content_add_list()
- * @see mediteran_preprocess_block_content_add_list()
- */
- #}
-
diff --git a/web/themes/contrib/mediteran/templates/block/block.html.twig b/web/themes/contrib/mediteran/templates/block/block.html.twig
deleted file mode 100644
index fd3311be..00000000
--- a/web/themes/contrib/mediteran/templates/block/block.html.twig
+++ /dev/null
@@ -1,44 +0,0 @@
-{#
-/**
- * @file
- * Theme override to display a block.
- *
- * Available variables:
- * - plugin_id: The ID of the block implementation.
- * - label: The configured label of the block if visible.
- * - configuration: A list of the block's configuration values.
- * - label: The configured label for the block.
- * - label_display: The display settings for the label.
- * - provider: The module or other provider that provided this block plugin.
- * - Block plugin specific settings will also be stored here.
- * - content: The content of this block.
- * - attributes: array of HTML attributes populated by modules, intended to
- * be added to the main container tag of this template.
- * - id: A valid HTML ID and guaranteed unique.
- * - title_attributes: Same as attributes, except applied to the main title
- * tag that appears in the template.
- * - title_prefix: Additional output populated by modules, intended to be
- * displayed in front of the main title tag that appears in the template.
- * - title_suffix: Additional output populated by modules, intended to be
- * displayed after the main title tag that appears in the template.
- *
- * @see template_preprocess_block()
- */
-#}
-{%
- set classes = [
- 'block',
- 'block-' ~ configuration.provider|clean_class,
- 'block-' ~ plugin_id|clean_class,
- ]
-%}
-
- {{ title_prefix }}
- {% if label %}
-
{{ label }}
- {% endif %}
- {{ title_suffix }}
- {% block content %}
- {{ content }}
- {% endblock %}
-
diff --git a/web/themes/contrib/mediteran/templates/content-edit/entity-add-list.html.twig b/web/themes/contrib/mediteran/templates/content-edit/entity-add-list.html.twig
deleted file mode 100644
index 3ff2e717..00000000
--- a/web/themes/contrib/mediteran/templates/content-edit/entity-add-list.html.twig
+++ /dev/null
@@ -1,27 +0,0 @@
-{#
-/**
- * @file
- * Theme override to to present a list of available bundles.
- *
- * Available variables:
- * - bundles: A list of bundles, each with the following properties:
- * - label: Bundle label.
- * - description: Bundle description.
- * - add_link: Link to create an entity of this bundle.
- * - add_bundle_message: The message shown when there are no bundles. Only
- * available if the entity type uses bundle entities.
- *
- * @see template_preprocess_entity_add_list()
- */
-#}
-{% if bundles is not empty %}
-
-{% elseif add_bundle_message is not empty %}
-
- {{ add_bundle_message }}
-
-{% endif %}
diff --git a/web/themes/contrib/mediteran/templates/content-edit/entity-moderation-form.html.twig b/web/themes/contrib/mediteran/templates/content-edit/entity-moderation-form.html.twig
deleted file mode 100644
index 7638e374..00000000
--- a/web/themes/contrib/mediteran/templates/content-edit/entity-moderation-form.html.twig
+++ /dev/null
@@ -1,8 +0,0 @@
-{{ attach_library('content_moderation/content_moderation') }}
-
-{{ form|without('current', 'new_state', 'revision_log', 'submit') }}
diff --git a/web/themes/contrib/mediteran/templates/content-edit/file-managed-file.html.twig b/web/themes/contrib/mediteran/templates/content-edit/file-managed-file.html.twig
deleted file mode 100644
index f639237d..00000000
--- a/web/themes/contrib/mediteran/templates/content-edit/file-managed-file.html.twig
+++ /dev/null
@@ -1,21 +0,0 @@
-{#
-/**
- * @file
- * Theme override to display a file form widget.
- *
- * Available variables:
- * - element: Form element for the file upload.
- * - attributes: HTML attributes for the containing element.
- *
- * @see template_preprocess_file_managed_file()
- */
-#}
-{%
- set classes = [
- 'js-form-managed-file',
- 'form-managed-file',
- ]
-%}
-
- {{ element }}
-
diff --git a/web/themes/contrib/mediteran/templates/content-edit/file-upload-help.html.twig b/web/themes/contrib/mediteran/templates/content-edit/file-upload-help.html.twig
deleted file mode 100644
index d05822eb..00000000
--- a/web/themes/contrib/mediteran/templates/content-edit/file-upload-help.html.twig
+++ /dev/null
@@ -1,12 +0,0 @@
-{#
-/**
- * @file
- * Theme override to display help text for file fields.
- *
- * Available variables:
- * - descriptions: Lines of help text for uploading a file.
- *
- * @see template_preprocess_file_upload_help()
- */
-#}
-{{ descriptions|safe_join('
') }}
diff --git a/web/themes/contrib/mediteran/templates/content-edit/file-widget-multiple.html.twig b/web/themes/contrib/mediteran/templates/content-edit/file-widget-multiple.html.twig
deleted file mode 100644
index 34646fe7..00000000
--- a/web/themes/contrib/mediteran/templates/content-edit/file-widget-multiple.html.twig
+++ /dev/null
@@ -1,14 +0,0 @@
-{#
-/**
- * @file
- * Theme override to display a multi file form widget.
- *
- * Available variables:
- * - table: Table of previously uploaded files.
- * - element: The form element for uploading another file.
- *
- * @see template_preprocess_file_widget_multiple()
- */
-#}
-{{ table }}
-{{ element }}
diff --git a/web/themes/contrib/mediteran/templates/content-edit/filter-caption.html.twig b/web/themes/contrib/mediteran/templates/content-edit/filter-caption.html.twig
deleted file mode 100644
index 1e35795f..00000000
--- a/web/themes/contrib/mediteran/templates/content-edit/filter-caption.html.twig
+++ /dev/null
@@ -1,18 +0,0 @@
-{#
-/**
- * @file
- * Theme override for a filter caption.
- *
- * Returns HTML for a captioned image, audio, video or other tag.
- *
- * Available variables
- * - string node: The complete HTML tag whose contents are being captioned.
- * - string tag: The name of the HTML tag whose contents are being captioned.
- * - string caption: The caption text.
- * - string classes: The classes of the captioned HTML tag.
- */
-#}
-
-{{ node }}
-{{ caption }}
-
diff --git a/web/themes/contrib/mediteran/templates/content-edit/filter-guidelines.html.twig b/web/themes/contrib/mediteran/templates/content-edit/filter-guidelines.html.twig
deleted file mode 100644
index afef2d2c..00000000
--- a/web/themes/contrib/mediteran/templates/content-edit/filter-guidelines.html.twig
+++ /dev/null
@@ -1,29 +0,0 @@
-{#
-/**
- * @file
- * Theme override for guidelines for a text format.
- *
- * Available variables:
- * - format: Contains information about the current text format, including the
- * following:
- * - name: The name of the text format, potentially unsafe and needs to be
- * escaped.
- * - format: The machine name of the text format, e.g. 'basic_html'.
- * - attributes: HTML attributes for the containing element.
- * - tips: Descriptions and a CSS ID in the form of 'module-name/filter-id'
- * (only used when 'long' is TRUE) for each filter in one or more text
- * formats.
- *
- * @see template_preprocess_filter_tips()
- */
-#}
-{%
- set classes = [
- 'filter-guidelines-item',
- 'filter-guidelines-' ~ format.id,
- ]
-%}
-
-
{{ format.label }}
- {{ tips }}
-
diff --git a/web/themes/contrib/mediteran/templates/content-edit/filter-tips.html.twig b/web/themes/contrib/mediteran/templates/content-edit/filter-tips.html.twig
deleted file mode 100644
index 25ed49d6..00000000
--- a/web/themes/contrib/mediteran/templates/content-edit/filter-tips.html.twig
+++ /dev/null
@@ -1,61 +0,0 @@
-{#
-/**
- * @file
- * Theme override for a set of filter tips.
- *
- * Available variables:
- * - tips: Descriptions and a CSS ID in the form of 'module-name/filter-id'
- * (only used when 'long' is TRUE) for each filter in one or more text
- * formats.
- * - long: A flag indicating whether the passed-in filter tips contain extended
- * explanations, i.e. intended to be output on the path 'filter/tips'
- * (TRUE), or are in a short format, i.e. suitable to be displayed below a
- * form element. Defaults to FALSE.
- * - multiple: A flag indicating there is more than one filter tip.
- *
- * @see template_preprocess_filter_tips()
- */
-#}
-{% if multiple %}
-
{{ 'Text Formats'|t }}
-{% endif %}
-
-{% if tips|length %}
- {% if multiple %}
-
- {% endif %}
-
- {% for name, tip in tips %}
- {% if multiple %}
- {%
- set tip_classes = [
- 'filter-type',
- 'filter-' ~ name|clean_class,
- ]
- %}
-
-
{{ tip.name }}
- {% endif %}
-
- {% if tip.list|length %}
-
- {% for item in tip.list %}
- {%
- set item_classes = [
- long ? 'filter-' ~ item.id|replace({'/': '-'}),
- ]
- %}
- - {{ item.tip }}
- {% endfor %}
-
- {% endif %}
-
- {% if multiple %}
-
- {% endif %}
- {% endfor %}
-
- {% if multiple %}
-
- {% endif %}
-{% endif %}
diff --git a/web/themes/contrib/mediteran/templates/content-edit/image-widget.html.twig b/web/themes/contrib/mediteran/templates/content-edit/image-widget.html.twig
deleted file mode 100644
index dac3a227..00000000
--- a/web/themes/contrib/mediteran/templates/content-edit/image-widget.html.twig
+++ /dev/null
@@ -1,23 +0,0 @@
-{#
-/**
- * @file
- * Theme override for an image field widget.
- *
- * Available variables:
- * - attributes: HTML attributes for the containing element.
- * - data: Render elements of the image widget.
- *
- * @see template_preprocess_image_widget()
- */
-#}
-
- {% if data.preview %}
-
- {{ data.preview }}
-
- {% endif %}
-
- {# Render widget data without the image preview that was output already. #}
- {{ data|without('preview') }}
-
-
diff --git a/web/themes/contrib/mediteran/templates/content-edit/node-add-list.html.twig b/web/themes/contrib/mediteran/templates/content-edit/node-add-list.html.twig
deleted file mode 100644
index b4758501..00000000
--- a/web/themes/contrib/mediteran/templates/content-edit/node-add-list.html.twig
+++ /dev/null
@@ -1,35 +0,0 @@
-{#
-/**
- * @file
- * Theme implementation to list node types available for adding content.
- *
- * Available variables:
- * - types: List of content types. Each content type contains:
- * - url: Path to the add content of this type page.
- * - label: The title of this type of content.
- * - description: Description of this type of content.
- *
- * @see template_preprocess_node_add_list()
- * @see mediteran_preprocess_node_add_list()
- */
-#}
-{% if content %}
-
- {% for type in types %}
- -
- {{ type.label }}
- {# Don't print empty description wrapper if there is no description #}
- {% if type.description %}
-
{{ type.description }}
- {% endif %}
-
- {% endfor %}
-
-{% else %}
-
- {% set create_content = path('node.type_add') %}
- {% trans %}
- You have not created any content types yet. Go to the content type creation page to add a new content type.
- {% endtrans %}
-
-{% endif %}
diff --git a/web/themes/contrib/mediteran/templates/content-edit/node-edit-form.html.twig b/web/themes/contrib/mediteran/templates/content-edit/node-edit-form.html.twig
deleted file mode 100644
index b51b1c25..00000000
--- a/web/themes/contrib/mediteran/templates/content-edit/node-edit-form.html.twig
+++ /dev/null
@@ -1,31 +0,0 @@
-{#
-/**
- * @file
- * Theme override for a node edit form.
- *
- * Two column template for the node add/edit form.
- *
- * This template will be used when a node edit form specifies 'node_edit_form'
- * as its #theme callback. Otherwise, by default, node add/edit forms will be
- * themed by form.html.twig.
- *
- * Available variables:
- * - form: The node add/edit form.
- *
- * @see mediteran_form_node_form_alter()
- */
-#}
-
diff --git a/web/themes/contrib/mediteran/templates/content-edit/text-format-wrapper.html.twig b/web/themes/contrib/mediteran/templates/content-edit/text-format-wrapper.html.twig
deleted file mode 100644
index 08a88ca1..00000000
--- a/web/themes/contrib/mediteran/templates/content-edit/text-format-wrapper.html.twig
+++ /dev/null
@@ -1,26 +0,0 @@
-{#
-/**
- * @file
- * Theme override for a text format-enabled form element.
- *
- * Available variables:
- * - children: Text format element children.
- * - description: Text format element description.
- * - attributes: HTML attributes for the containing element.
- * - aria_description: Flag for whether or not an ARIA description has been
- * added to the description container.
- *
- * @see template_preprocess_text_format_wrapper()
- */
-#}
-
- {{ children }}
- {% if description %}
- {%
- set classes = [
- aria_description ? 'description',
- ]
- %}
-
{{ description }}
- {% endif %}
-
diff --git a/web/themes/contrib/mediteran/templates/content/aggregator-item.html.twig b/web/themes/contrib/mediteran/templates/content/aggregator-item.html.twig
deleted file mode 100644
index 83ef5d01..00000000
--- a/web/themes/contrib/mediteran/templates/content/aggregator-item.html.twig
+++ /dev/null
@@ -1,29 +0,0 @@
-{#
-/**
- * @file
- * Theme override to present a feed item in an aggregator page.
- *
- * Available variables:
- * - url: URL to the originating feed item.
- * - title: Title of the feed item.
- * - content: All field items. Use {{ content }} to print them all,
- * or print a subset such as {{ content.field_example }}. Use
- * {{ content|without('field_example') }} to temporarily suppress the printing
- * of a given element.
- * - attributes: HTML attributes for the wrapper.
- * - title_prefix: Additional output populated by modules, intended to be
- * displayed in front of the main title tag that appears in the template.
- * - title_suffix: Additional output populated by modules, intended to be
- * displayed after the main title tag that appears in the template.
- *
- * @see template_preprocess_aggregator_item()
- */
-#}
-
- {{ title_prefix }}
-
- {{ title_suffix }}
- {{ content }}
-
diff --git a/web/themes/contrib/mediteran/templates/content/book-node-export-html.html.twig b/web/themes/contrib/mediteran/templates/content/book-node-export-html.html.twig
deleted file mode 100644
index 94a4c24d..00000000
--- a/web/themes/contrib/mediteran/templates/content/book-node-export-html.html.twig
+++ /dev/null
@@ -1,20 +0,0 @@
-{#
-/**
- * @file
- * Theme override for a single node in a printer-friendly outline.
- *
- * Available variables:
- * - node: Fully loaded node.
- * - depth: Depth of the current node inside the outline.
- * - title: Node title.
- * - content: Node content.
- * - children: All the child nodes recursively rendered through this file.
- *
- * @see template_preprocess_book_node_export_html()
- */
-#}
-
- {{ title }}
- {{ content }}
- {{ children }}
-
diff --git a/web/themes/contrib/mediteran/templates/content/comment.html.twig b/web/themes/contrib/mediteran/templates/content/comment.html.twig
deleted file mode 100644
index b5573f5d..00000000
--- a/web/themes/contrib/mediteran/templates/content/comment.html.twig
+++ /dev/null
@@ -1,109 +0,0 @@
-{#
-/**
- * @file
- * Theme override for comments.
- *
- * Available variables:
- * - author: Comment author. Can be a link or plain text.
- * - content: The content-related items for the comment display. Use
- * {{ content }} to print them all, or print a subset such as
- * {{ content.field_example }}. Use the following code to temporarily suppress
- * the printing of a given child element:
- * @code
- * {{ content|without('field_example') }}
- * @endcode
- * - created: Formatted date and time for when the comment was created.
- * Preprocess functions can reformat it by calling format_date() with the
- * desired parameters on the 'comment.created' variable.
- * - changed: Formatted date and time for when the comment was last changed.
- * Preprocess functions can reformat it by calling format_date() with the
- * desired parameters on the 'comment.changed' variable.
- * - permalink: Comment permalink.
- * - submitted: Submission information created from author and created
- * during template_preprocess_comment().
- * - user_picture: The comment author's profile picture.
- * - status: Comment status. Possible values are:
- * unpublished, published, or preview.
- * - title: Comment title, linked to the comment.
- * - attributes: HTML attributes for the containing element.
- * The attributes.class may contain one or more of the following classes:
- * - comment: The current template type; e.g., 'theming hook'.
- * - by-anonymous: Comment by an unregistered user.
- * - by-{entity-type}-author: Comment by the author of the parent entity,
- * eg. by-node-author.
- * - preview: When previewing a new or edited comment.
- * The following applies only to viewers who are registered users:
- * - unpublished: An unpublished comment visible only to administrators.
- * - title_prefix: Additional output populated by modules, intended to be
- * displayed in front of the main title tag that appears in the template.
- * - title_suffix: Additional output populated by modules, intended to be
- * displayed after the main title tag that appears in the template.
- * - content_attributes: List of classes for the styling of the comment content.
- * - title_attributes: Same as attributes, except applied to the main title
- * tag that appears in the template.
- * - threaded: A flag indicating whether the comments are threaded or not.
- *
- * These variables are provided to give context about the parent comment (if
- * any):
- * - comment_parent: Full parent comment entity (if any).
- * - parent_author: Equivalent to author for the parent comment.
- * - parent_created: Equivalent to created for the parent comment.
- * - parent_changed: Equivalent to changed for the parent comment.
- * - parent_title: Equivalent to title for the parent comment.
- * - parent_permalink: Equivalent to permalink for the parent comment.
- * - parent: A text string of parent comment submission information created from
- * 'parent_author' and 'parent_created' during template_preprocess_comment().
- * This information is presented to help screen readers follow lengthy
- * discussion threads. You can hide this from sighted users using the class
- * visually-hidden.
- *
- * These two variables are provided for context:
- * - comment: Full comment object.
- * - entity: Entity the comments are attached to.
- *
- * @see template_preprocess_comment()
- */
-#}
-
-{%
- set classes = [
- 'comment',
- 'js-comment',
- status != 'published' ? status,
- comment.owner.anonymous ? 'by-anonymous',
- author_id and author_id == commented_entity.getOwnerId() ? 'by-' ~ commented_entity.getEntityTypeId() ~ '-author',
- ]
-%}
-
- {#
- Hide the "new" indicator by default, let a piece of JavaScript ask the
- server which comments are new for the user. Rendering the final "new"
- indicator here would break the render cache.
- #}
-
-
-
-
-
- {% if title %}
- {{ title_prefix }}
-
{{ title }}
- {{ title_suffix }}
- {% endif %}
- {{ content }}
-
-
diff --git a/web/themes/contrib/mediteran/templates/content/links--node.html.twig b/web/themes/contrib/mediteran/templates/content/links--node.html.twig
deleted file mode 100644
index a7b91e71..00000000
--- a/web/themes/contrib/mediteran/templates/content/links--node.html.twig
+++ /dev/null
@@ -1,40 +0,0 @@
-{#
-/**
- * @file
- * Theme override to display node links.
- *
- * Available variables:
- * - attributes: Attributes for the UL containing the list of links.
- * - links: Links to be output.
- * Each link will have the following elements:
- * - title: The link text.
- * - href: The link URL. If omitted, the 'title' is shown as a plain text
- * item in the links list. If 'href' is supplied, the entire link is passed
- * to l() as its $options parameter.
- * - attributes: (optional) HTML attributes for the anchor, or for the
- * tag if no 'href' is supplied.
- * - heading: (optional) A heading to precede the links.
- * - text: The heading text.
- * - level: The heading level (e.g. 'h2', 'h3').
- * - attributes: (optional) A keyed list of attributes for the heading.
- * If the heading is a string, it will be used as the text of the heading and
- * the level will default to 'h2'.
- *
- * Headings should be used on navigation menus and any list of links that
- * consistently appears on multiple pages. To make the heading invisible use
- * the 'visually-hidden' CSS class. Do not use 'display:none', which
- * removes it from screen readers and assistive technology. Headings allow
- * screen reader and keyboard only users to navigate to or skip the links.
- * See http://juicystudio.com/article/screen-readers-display-none.php and
- * http://www.w3.org/TR/WCAG-TECHS/H42.html for more information.
- *
- * @see template_preprocess_links()
- *
- * @ingroup themeable
- */
-#}
-{% if links %}
-
- {% include "links.html.twig" %}
-
-{% endif %}
diff --git a/web/themes/contrib/mediteran/templates/content/mark.html.twig b/web/themes/contrib/mediteran/templates/content/mark.html.twig
deleted file mode 100644
index 9219915c..00000000
--- a/web/themes/contrib/mediteran/templates/content/mark.html.twig
+++ /dev/null
@@ -1,20 +0,0 @@
-{#
-/**
- * @file
- * Theme override for a marker for new or updated content.
- *
- * Available variables:
- * - status: Number representing the marker status to display. Use the constants
- * below for comparison:
- * - MARK_NEW
- * - MARK_UPDATED
- * - MARK_READ
- */
-#}
-{% if logged_in %}
- {% if status is constant('MARK_NEW') %}
- {{ 'New'|t }}
- {% elseif status is constant('MARK_UPDATED') %}
- {{ 'Updated'|t }}
- {% endif %}
-{% endif %}
diff --git a/web/themes/contrib/mediteran/templates/content/media-reference-help.html.twig b/web/themes/contrib/mediteran/templates/content/media-reference-help.html.twig
deleted file mode 100644
index 753ce56c..00000000
--- a/web/themes/contrib/mediteran/templates/content/media-reference-help.html.twig
+++ /dev/null
@@ -1,65 +0,0 @@
-{#
-/**
- * @file
- * Theme override for media reference fields.
- *
- * @see template_preprocess_field_multiple_value_form()
- */
-#}
-{%
- set classes = [
- 'js-form-item',
- 'form-item',
- 'js-form-wrapper',
- 'form-wrapper',
- ]
-%}
-
diff --git a/web/themes/contrib/mediteran/templates/content/media.html.twig b/web/themes/contrib/mediteran/templates/content/media.html.twig
deleted file mode 100644
index 24d3d3a9..00000000
--- a/web/themes/contrib/mediteran/templates/content/media.html.twig
+++ /dev/null
@@ -1,28 +0,0 @@
-{#
-/**
- * @file
- * Theme override to display a media item.
- *
- * Available variables:
- * - name: Name of the media.
- * - content: Media content.
- *
- * @see template_preprocess_media()
- *
- * @ingroup themeable
- */
-#}
-{%
- set classes = [
- 'media',
- 'media--type-' ~ media.bundle()|clean_class,
- not media.isPublished() ? 'media--unpublished',
- view_mode ? 'media--view-mode-' ~ view_mode.id()|clean_class,
- ]
-%}
-
- {{ title_suffix.contextual_links }}
- {% if content %}
- {{ content }}
- {% endif %}
-
diff --git a/web/themes/contrib/mediteran/templates/content/node.html.twig b/web/themes/contrib/mediteran/templates/content/node.html.twig
deleted file mode 100644
index 0c491ebd..00000000
--- a/web/themes/contrib/mediteran/templates/content/node.html.twig
+++ /dev/null
@@ -1,107 +0,0 @@
-{#
-/**
- * @file
- * Theme override to display a node.
- *
- * Available variables:
- * - node: The node entity with limited access to object properties and methods.
- * Only method names starting with "get", "has", or "is" and a few common
- * methods such as "id", "label", and "bundle" are available. For example:
- * - node.getCreatedTime() will return the node creation timestamp.
- * - node.hasField('field_example') returns TRUE if the node bundle includes
- * field_example. (This does not indicate the presence of a value in this
- * field.)
- * - node.isPublished() will return whether the node is published or not.
- * Calling other methods, such as node.delete(), will result in an exception.
- * See \Drupal\node\Entity\Node for a full list of public properties and
- * methods for the node object.
- * - label: The title of the node.
- * - content: All node items. Use {{ content }} to print them all,
- * or print a subset such as {{ content.field_example }}. Use
- * {{ content|without('field_example') }} to temporarily suppress the printing
- * of a given child element.
- * - author_picture: The node author user entity, rendered using the "compact"
- * view mode.
- * - metadata: Metadata for this node.
- * - date: Themed creation date field.
- * - author_name: Themed author name field.
- * - url: Direct URL of the current node.
- * - display_submitted: Whether submission information should be displayed.
- * - attributes: HTML attributes for the containing element.
- * The attributes.class element may contain one or more of the following
- * classes:
- * - node: The current template type (also known as a "theming hook").
- * - node--type-[type]: The current node type. For example, if the node is an
- * "Article" it would result in "node--type-article". Note that the machine
- * name will often be in a short form of the human readable label.
- * - node--view-mode-[view_mode]: The View Mode of the node; for example, a
- * teaser would result in: "node--view-mode-teaser", and
- * full: "node--view-mode-full".
- * The following are controlled through the node publishing options.
- * - node--promoted: Appears on nodes promoted to the front page.
- * - node--sticky: Appears on nodes ordered above other non-sticky nodes in
- * teaser listings.
- * - node--unpublished: Appears on unpublished nodes visible only to site
- * admins.
- * - title_attributes: Same as attributes, except applied to the main title
- * tag that appears in the template.
- * - content_attributes: Same as attributes, except applied to the main
- * content tag that appears in the template.
- * - author_attributes: Same as attributes, except applied to the author of
- * the node tag that appears in the template.
- * - title_prefix: Additional output populated by modules, intended to be
- * displayed in front of the main title tag that appears in the template.
- * - title_suffix: Additional output populated by modules, intended to be
- * displayed after the main title tag that appears in the template.
- * - view_mode: View mode; for example, "teaser" or "full".
- * - teaser: Flag for the teaser state. Will be true if view_mode is 'teaser'.
- * - page: Flag for the full page state. Will be true if view_mode is 'full'.
- * - readmore: Flag for more state. Will be true if the teaser content of the
- * node cannot hold the main body content.
- * - logged_in: Flag for authenticated user status. Will be true when the
- * current user is a logged-in member.
- * - is_admin: Flag for admin user status. Will be true when the current user
- * is an administrator.
- *
- * @see template_preprocess_node()
- *
- * @todo Remove the id attribute (or make it a class), because if that gets
- * rendered twice on a page this is invalid CSS for example: two lists
- * in different view modes.
- */
-#}
-{%
- set classes = [
- 'node',
- 'node--type-' ~ node.bundle|clean_class,
- node.isPromoted() ? 'node--promoted',
- node.isSticky() ? 'node--sticky',
- not node.isPublished() ? 'node--unpublished',
- view_mode ? 'node--view-mode-' ~ view_mode|clean_class,
- ]
-%}
-
-
- {{ title_prefix }}
- {% if not page %}
-
- {% endif %}
- {{ title_suffix }}
-
- {% if display_submitted %}
-
- {% endif %}
-
-
- {{ content }}
-
-
-
diff --git a/web/themes/contrib/mediteran/templates/content/off-canvas-page-wrapper.html.twig b/web/themes/contrib/mediteran/templates/content/off-canvas-page-wrapper.html.twig
deleted file mode 100644
index 2c8e23c6..00000000
--- a/web/themes/contrib/mediteran/templates/content/off-canvas-page-wrapper.html.twig
+++ /dev/null
@@ -1,24 +0,0 @@
-{#
-/**
- * @file
- * Theme override for page wrapper.
- *
- * For consistent wrapping to {{ page }} render in all themes. The
- * "data-off-canvas-main-canvas" attribute is required by the off-canvas dialog.
- * This is used by the core/drupal.dialog.off_canvas library to select the
- * "main canvas" page element as opposed to the "off canvas" which is the dialog
- * itself. The "main canvas" element must be resized according to the width of
- * the "off canvas" dialog so that no portion of the "main canvas" is obstructed
- * by the off-canvas dialog. The off-canvas dialog can vary in width when opened
- * and can be resized by the user. The "data-off-canvas-main-canvas" attribute
- * cannot be removed without breaking the off-canvas dialog functionality.
- *
- * Available variables:
- * - children: Contains the child elements of the page.
- */
-#}
-{% if children %}
-
- {{ children }}
-
-{% endif %}
diff --git a/web/themes/contrib/mediteran/templates/content/page-title.html.twig b/web/themes/contrib/mediteran/templates/content/page-title.html.twig
deleted file mode 100644
index e1de7266..00000000
--- a/web/themes/contrib/mediteran/templates/content/page-title.html.twig
+++ /dev/null
@@ -1,19 +0,0 @@
-{#
-/**
- * @file
- * Theme override for page titles.
- *
- * Available variables:
- * - title_attributes: HTML attributes for the page title element.
- * - title_prefix: Additional output populated by modules, intended to be
- * displayed in front of the main title tag that appears in the template.
- * - title: The page title, for use in the actual content.
- * - title_suffix: Additional output populated by modules, intended to be
- * displayed after the main title tag that appears in the template.
- */
-#}
-{{ title_prefix }}
-{% if title %}
- {{ title }}
-{% endif %}
-{{ title_suffix }}
diff --git a/web/themes/contrib/mediteran/templates/content/search-result.html.twig b/web/themes/contrib/mediteran/templates/content/search-result.html.twig
deleted file mode 100644
index bdf54346..00000000
--- a/web/themes/contrib/mediteran/templates/content/search-result.html.twig
+++ /dev/null
@@ -1,71 +0,0 @@
-{#
-/**
- * @file
- * Theme override for displaying a single search result.
- *
- * This template renders a single search result. The list of results is
- * rendered using '#theme' => 'item_list', with suggestions of:
- * - item_list__search_results__(plugin_id)
- * - item_list__search_results
- *
- * Available variables:
- * - url: URL of the result.
- * - title: Title of the result.
- * - snippet: A small preview of the result. Does not apply to user searches.
- * - info: String of all the meta information ready for print. Does not apply
- * to user searches.
- * - plugin_id: The machine-readable name of the plugin being executed,such
- * as "node_search" or "user_search".
- * - title_prefix: Additional output populated by modules, intended to be
- * displayed in front of the main title tag that appears in the template.
- * - title_suffix: Additional output populated by modules, intended to be
- * displayed after the main title tag that appears in the template.
- * - info_split: Contains same data as info, but split into separate parts.
- * - info_split.type: Node type (or item type string supplied by module).
- * - info_split.user: Author of the node linked to users profile. Depends
- * on permission.
- * - info_split.date: Last update of the node. Short formatted.
- * - info_split.comment: Number of comments output as "% comments", %
- * being the count. (Depends on comment.module).
- * @todo The info variable needs to be made drillable and each of these sub
- * items should instead be within info and renamed info.foo, info.bar, etc.
- *
- * Other variables:
- * - title_attributes: HTML attributes for the title.
- * - content_attributes: HTML attributes for the content.
- *
- * Since info_split is keyed, a direct print of the item is possible.
- * This array does not apply to user searches so it is recommended to check
- * for its existence before printing. The default keys of 'type', 'user' and
- * 'date' always exist for node searches. Modules may provide other data.
- * @code
- * {% if (info_split.comment) %}
- *
- * {% endif %}
- * @endcode
- *
- * To check for all available data within info_split, use the code below.
- * @code
- *
- * {{ dump(info_split) }}
- *
- * @endcode
- *
- * @see template_preprocess_search_result()
- */
-#}
-{{ title_prefix }}
-
-{{ title_suffix }}
-
- {% if snippet %}
-
{{ snippet }}
- {% endif %}
- {% if info %}
-
{{ info }}
- {% endif %}
-
diff --git a/web/themes/contrib/mediteran/templates/content/taxonomy-term.html.twig b/web/themes/contrib/mediteran/templates/content/taxonomy-term.html.twig
deleted file mode 100644
index 7e0446e0..00000000
--- a/web/themes/contrib/mediteran/templates/content/taxonomy-term.html.twig
+++ /dev/null
@@ -1,41 +0,0 @@
-{#
-/**
- * @file
- * Theme override to display a taxonomy term.
- *
- * Available variables:
- * - url: URL of the current term.
- * - name: Name of the current term.
- * - content: Items for the content of the term (fields and description).
- * Use 'content' to print them all, or print a subset such as
- * 'content.description'. Use the following code to exclude the
- * printing of a given child element:
- * @code
- * {{ content|without('description') }}
- * @endcode
- * - attributes: HTML attributes for the wrapper.
- * - page: Flag for the full page state.
- * - term: The taxonomy term entity, including:
- * - id: The ID of the taxonomy term.
- * - bundle: Machine name of the current vocabulary.
- * - view_mode: View mode, e.g. 'full', 'teaser', etc.
- *
- * @see template_preprocess_taxonomy_term()
- */
-#}
-{%
- set classes = [
- 'taxonomy-term',
- 'vocabulary-' ~ term.bundle|clean_class,
- ]
-%}
-
- {{ title_prefix }}
- {% if not page %}
-
- {% endif %}
- {{ title_suffix }}
-
- {{ content }}
-
-
diff --git a/web/themes/contrib/mediteran/templates/dataset/aggregator-feed.html.twig b/web/themes/contrib/mediteran/templates/dataset/aggregator-feed.html.twig
deleted file mode 100644
index 9b1229a3..00000000
--- a/web/themes/contrib/mediteran/templates/dataset/aggregator-feed.html.twig
+++ /dev/null
@@ -1,36 +0,0 @@
-{#
-/**
- * @file
- * Theme override to present an aggregator feed.
- *
- * The contents are rendered above feed listings when browsing source feeds.
- * For example, "example.com/aggregator/sources/1".
- *
- * Available variables:
- * - title: Title of the feed item.
- * - content: All field items. Use {{ content }} to print them all,
- * or print a subset such as {{ content.field_example }}. Use
- * {{ content|without('field_example') }} to temporarily suppress the printing
- * of a given element.
- * - attributes: HTML attributes for the wrapper.
- * - title_attributes: Same as attributes, except applied to the main title
- * tag that appears in the template.
- * - title_prefix: Additional output populated by modules, intended to be
- * displayed in front of the main title tag that appears in the template.
- * - title_suffix: Additional output populated by modules, intended to be
- * displayed after the main title tag that appears in the template.
- *
- * @see template_preprocess_aggregator_feed()
- */
-#}
-
-
- {{ title_prefix }}
- {% if not full %}
-
{{ title }}
- {% endif %}
- {{ title_suffix }}
-
- {{ content }}
-
-
diff --git a/web/themes/contrib/mediteran/templates/dataset/forum-icon.html.twig b/web/themes/contrib/mediteran/templates/dataset/forum-icon.html.twig
deleted file mode 100644
index d6be503b..00000000
--- a/web/themes/contrib/mediteran/templates/dataset/forum-icon.html.twig
+++ /dev/null
@@ -1,30 +0,0 @@
-{#
-/**
- * @file
- * Theme override to display a status icon for a forum post.
- *
- * Available variables:
- * - attributes: HTML attributes to be applied to the wrapper element.
- * - class: HTML classes that determine which icon to display. May be one of
- * 'hot', 'hot-new', 'new', 'default', 'closed', or 'sticky'.
- * - title: Text alternative for the forum icon.
- * - icon_title: Text alternative for the forum icon, same as above.
- * - new_posts: '1' when this topic contains new posts, otherwise '0'.
- * - first_new: '1' when this is the first topic with new posts, otherwise '0'.
- * - icon_status: Indicates which status icon should be used.
- *
- * @see template_preprocess_forum_icon()
- */
-#}
-{%
- set classes = [
- 'forum__icon',
- 'forum__topic-status--' ~ icon_status,
- ]
-%}
-
- {% if first_new -%}
-
- {%- endif %}
-
{{ icon_title }}
-
diff --git a/web/themes/contrib/mediteran/templates/dataset/forum-list.html.twig b/web/themes/contrib/mediteran/templates/dataset/forum-list.html.twig
deleted file mode 100644
index ce610bb4..00000000
--- a/web/themes/contrib/mediteran/templates/dataset/forum-list.html.twig
+++ /dev/null
@@ -1,79 +0,0 @@
-{#
-/**
- * @file
- * Theme override to display a list of forums and containers.
- *
- * Available variables:
- * - forums: A collection of forums and containers to display. It is keyed to
- * the numeric IDs of all child forums and containers. Each forum in forums
- * contains:
- * - is_container: A flag indicating if the forum can contain other
- * forums. Otherwise, the forum can only contain topics.
- * - depth: How deep the forum is in the current hierarchy.
- * - zebra: 'even' or 'odd', used for row class.
- * - icon_class: 'default' or 'new', used for forum icon class.
- * - icon_title: Text alternative for the forum icon.
- * - name: The name of the forum.
- * - link: The URL to link to this forum.
- * - description: The description field for the forum, containing:
- * - value: The descriptive text for the forum.
- * - new_topics: A flag indicating if the forum contains unread posts.
- * - new_url: A URL to the forum's unread posts.
- * - new_text: Text for the above URL, which tells how many new posts.
- * - old_topics: A count of posts that have already been read.
- * - num_posts: The total number of posts in the forum.
- * - last_reply: Text representing the last time a forum was posted or
- * commented in.
- * - forum_id: Forum ID for the current forum. Parent to all items within the
- * forums array.
- *
- * @see template_preprocess_forum_list()
- */
-#}
-
-
-
- | {{ 'Forum'|t }} |
- {{ 'Topics'|t }} |
- {{ 'Posts'|t }} |
- {{ 'Last post'|t }} |
-
-
-
- {% for child_id, forum in forums %}
-
-
- {#
- Enclose the contents of this cell with X divs, where X is the
- depth this forum resides at. This will allow us to use CSS
- left-margin for indenting.
- #}
- {% for i in 1..forum.depth if forum.depth > 0 %}{% endfor %}
-
- {{ forum.icon_title }}
-
-
- {% if forum.description.value %}
- {{ forum.description.value }}
- {% endif %}
- {% for i in 1..forum.depth if forum.depth > 0 %} {% endfor %}
- |
- {% if forum.is_container == false %}
-
- {{ forum.num_topics }}
- {% if forum.new_topics == true %}
-
- {{ forum.new_text }}
- {% endif %}
- |
- {{ forum.num_posts }} |
- {{ forum.last_reply }} |
- {% endif %}
-
- {% endfor %}
-
-
diff --git a/web/themes/contrib/mediteran/templates/dataset/forums.html.twig b/web/themes/contrib/mediteran/templates/dataset/forums.html.twig
deleted file mode 100644
index eada3a8a..00000000
--- a/web/themes/contrib/mediteran/templates/dataset/forums.html.twig
+++ /dev/null
@@ -1,23 +0,0 @@
-{#
-/**
- * @file
- * Theme override to display a forum.
- *
- * May contain forum containers as well as forum topics.
- *
- * Available variables:
- * - forums: The forums to display (as processed by forum-list.html.twig).
- * - topics: The topics to display.
- * - topics_pager: The topics pager.
- * - forums_defined: A flag to indicate that the forums are configured.
- *
- * @see template_preprocess_forums()
- */
-#}
-{% if forums_defined %}
-
- {{ forums }}
- {{ topics }}
- {{ topics_pager }}
-
-{% endif %}
diff --git a/web/themes/contrib/mediteran/templates/dataset/item-list--search-results.html.twig b/web/themes/contrib/mediteran/templates/dataset/item-list--search-results.html.twig
deleted file mode 100644
index e9928fd7..00000000
--- a/web/themes/contrib/mediteran/templates/dataset/item-list--search-results.html.twig
+++ /dev/null
@@ -1,29 +0,0 @@
-{% extends "item-list.html.twig" %}
-{#
-/**
- * @file
- * Theme override for an item list of search results.
- *
- * Available variables:
- * - items: A list of items. Each item contains:
- * - attributes: HTML attributes to be applied to each list item.
- * - value: The content of the list element.
- * - title: The title of the list.
- * - list_type: The tag for list element ("ul" or "ol").
- * - attributes: HTML attributes to be applied to the list.
- * - empty: A message to display when there are no items. Allowed value is a
- * string or render array.
- * - context: An list of contextual data associated with the list. For search
- * results, the following data is set:
- * - plugin: The search plugin ID, for example "node_search".
- *
- * @see template_preprocess_item_list()
- */
-#}
-{%
- set classes = [
- 'search-results',
- context.plugin ~ '-results',
- ]
-%}
-{% set attributes = attributes.addClass(classes) %}
diff --git a/web/themes/contrib/mediteran/templates/dataset/item-list.html.twig b/web/themes/contrib/mediteran/templates/dataset/item-list.html.twig
deleted file mode 100644
index 20541b0b..00000000
--- a/web/themes/contrib/mediteran/templates/dataset/item-list.html.twig
+++ /dev/null
@@ -1,41 +0,0 @@
-{#
-/**
- * @file
- * Theme override for an item list.
- *
- * Available variables:
- * - items: A list of items. Each item contains:
- * - attributes: HTML attributes to be applied to each list item.
- * - value: The content of the list element.
- * - title: The title of the list.
- * - list_type: The tag for list element ("ul" or "ol").
- * - wrapper_attributes: HTML attributes to be applied to the list wrapper.
- * - attributes: HTML attributes to be applied to the list.
- * - empty: A message to display when there are no items. Allowed value is a
- * string or render array.
- * - context: A list of contextual data associated with the list. May contain:
- * - list_style: The custom list style.
- *
- * @see template_preprocess_item_list()
- */
-#}
-{% if context.list_style %}
- {%- set wrapper_attributes = wrapper_attributes.addClass('item-list--' ~ context.list_style) %}
- {%- set attributes = attributes.addClass('item-list__' ~ context.list_style) %}
-{% endif %}
-{% if items or empty -%}
-
- {%- if title is not empty -%}
-
{{ title }}
- {%- endif -%}
- {%- if items -%}
- <{{ list_type }}{{ attributes }}>
- {%- for item in items -%}
- {{ item.value }}
- {%- endfor -%}
- {{ list_type }}>
- {%- else -%}
- {{- empty -}}
- {%- endif -%}
-
-{%- endif %}
diff --git a/web/themes/contrib/mediteran/templates/dataset/table.html.twig b/web/themes/contrib/mediteran/templates/dataset/table.html.twig
deleted file mode 100644
index 2afa9c15..00000000
--- a/web/themes/contrib/mediteran/templates/dataset/table.html.twig
+++ /dev/null
@@ -1,113 +0,0 @@
-{#
-/**
- * @file
- * Theme override to display a table.
- *
- * Available variables:
- * - attributes: HTML attributes to apply to the tag.
- * - caption: A localized string for the tag.
- * - colgroups: Column groups. Each group contains the following properties:
- * - attributes: HTML attributes to apply to the tag.
- * Note: Drupal currently supports only one table header row, see
- * https://www.drupal.org/node/893530 and
- * http://api.drupal.org/api/drupal/includes!theme.inc/function/theme_table/7#comment-5109.
- * - header: Table header cells. Each cell contains the following properties:
- * - tag: The HTML tag name to use; either 'th' or 'td'.
- * - attributes: HTML attributes to apply to the tag.
- * - content: A localized string for the title of the column.
- * - field: Field name (required for column sorting).
- * - sort: Default sort order for this column ("asc" or "desc").
- * - sticky: A flag indicating whether to use a "sticky" table header.
- * - rows: Table rows. Each row contains the following properties:
- * - attributes: HTML attributes to apply to the tag.
- * - data: Table cells.
- * - no_striping: A flag indicating that the row should receive no
- * 'even / odd' styling. Defaults to FALSE.
- * - cells: Table cells of the row. Each cell contains the following keys:
- * - tag: The HTML tag name to use; either 'th' or 'td'.
- * - attributes: Any HTML attributes, such as "colspan", to apply to the
- * table cell.
- * - content: The string to display in the table cell.
- * - active_table_sort: A boolean indicating whether the cell is the active
- table sort.
- * - footer: Table footer rows, in the same format as the rows variable.
- * - empty: The message to display in an extra row if table does not have
- * any rows.
- * - no_striping: A boolean indicating that the row should receive no striping.
- * - header_columns: The number of columns in the header.
- *
- * @see template_preprocess_table()
- */
-#}
-
- {% if caption %}
- {{ caption }}
- {% endif %}
-
- {% for colgroup in colgroups %}
- {% if colgroup.cols %}
-
- {% for col in colgroup.cols %}
-
- {% endfor %}
-
- {% else %}
-
- {% endif %}
- {% endfor %}
-
- {% if header %}
-
-
- {% for cell in header %}
- {%
- set cell_classes = [
- cell.active_table_sort ? 'is-active',
- ]
- %}
- <{{ cell.tag }}{{ cell.attributes.addClass(cell_classes) }}>
- {{- cell.content -}}
- {{ cell.tag }}>
- {% endfor %}
-
-
- {% endif %}
-
- {% if rows %}
-
- {% for row in rows %}
- {%
- set row_classes = [
- not no_striping ? cycle(['odd', 'even'], loop.index0),
- ]
- %}
-
- {% for cell in row.cells %}
- <{{ cell.tag }}{{ cell.attributes }}>
- {{- cell.content -}}
- {{ cell.tag }}>
- {% endfor %}
-
- {% endfor %}
-
- {% elseif empty %}
-
-
- | {{ empty }} |
-
-
- {% endif %}
- {% if footer %}
-
- {% for row in footer %}
-
- {% for cell in row.cells %}
- <{{ cell.tag }}{{ cell.attributes }}>
- {{- cell.content -}}
- {{ cell.tag }}>
- {% endfor %}
-
- {% endfor %}
-
- {% endif %}
-
diff --git a/web/themes/contrib/mediteran/templates/field/field--comment.html.twig b/web/themes/contrib/mediteran/templates/field/field--comment.html.twig
deleted file mode 100644
index 1ec3ee64..00000000
--- a/web/themes/contrib/mediteran/templates/field/field--comment.html.twig
+++ /dev/null
@@ -1,57 +0,0 @@
-{#
-/**
- * @file
- * Theme override for comment fields.
- *
- * Available variables:
- * - attributes: HTML attributes for the containing element.
- * - label_hidden: Whether to show the field label or not.
- * - title_attributes: HTML attributes for the title.
- * - label: The label for the field.
- * - title_prefix: Additional output populated by modules, intended to be
- * displayed in front of the main title tag that appears in the template.
- * - title_suffix: Additional title output populated by modules, intended to
- * be displayed after the main title tag that appears in the template.
- * - comments: List of comments rendered through comment.html.twig.
- * - comment_form: The 'Add new comment' form.
- * - comment_display_mode: Is the comments are threaded.
- * - comment_type: The comment type bundle ID for the comment field.
- * - entity_type: The entity type to which the field belongs.
- * - field_name: The name of the field.
- * - field_type: The type of the field.
- * - label_display: The display settings for the label.
- *
- * @see template_preprocess_field()
- * @see comment_preprocess_field()
- */
-#}
-{%
- set classes = [
- 'field',
- 'field--name-' ~ field_name|clean_class,
- 'field--type-' ~ field_type|clean_class,
- 'field--label-' ~ label_display,
- 'comment-wrapper',
- ]
-%}
-{%
- set title_classes = [
- 'title',
- label_display == 'visually_hidden' ? 'visually-hidden',
- ]
-%}
-
- {% if comments and not label_hidden %}
- {{ title_prefix }}
- {{ label }}
- {{ title_suffix }}
- {% endif %}
-
- {{ comments }}
-
- {% if comment_form %}
-
- {{ comment_form }}
- {% endif %}
-
-
diff --git a/web/themes/contrib/mediteran/templates/field/field--node--created.html.twig b/web/themes/contrib/mediteran/templates/field/field--node--created.html.twig
deleted file mode 100644
index 72d5d673..00000000
--- a/web/themes/contrib/mediteran/templates/field/field--node--created.html.twig
+++ /dev/null
@@ -1,34 +0,0 @@
-{#
-/**
- * @file
- * Theme override for the node created field.
- *
- * This is an override of field.html.twig for the node created field. See that
- * template for documentation about its details and overrides.
- *
- * Available variables:
- * - attributes: HTML attributes for the containing span element.
- * - items: List of all the field items. Each item contains:
- * - attributes: List of HTML attributes for each item.
- * - content: The field item content.
- * - entity_type: The entity type to which the field belongs.
- * - field_name: The name of the field.
- * - field_type: The type of the field.
- * - label_display: The display settings for the label.
- *
- * @see field.html.twig
- */
-#}
-{%
- set classes = [
- 'field',
- 'field--name-' ~ field_name|clean_class,
- 'field--type-' ~ field_type|clean_class,
- 'field--label-' ~ label_display,
- ]
-%}
-
- {%- for item in items -%}
- {{ item.content }}
- {%- endfor -%}
-
diff --git a/web/themes/contrib/mediteran/templates/field/field--node--title.html.twig b/web/themes/contrib/mediteran/templates/field/field--node--title.html.twig
deleted file mode 100644
index 33b105f5..00000000
--- a/web/themes/contrib/mediteran/templates/field/field--node--title.html.twig
+++ /dev/null
@@ -1,34 +0,0 @@
-{#
-/**
- * @file
- * Theme override for the node title field.
- *
- * This is an override of field.html.twig for the node title field. See that
- * template for documentation about its details and overrides.
- *
- * Available variables:
- * - attributes: HTML attributes for the containing span element.
- * - items: List of all the field items. Each item contains:
- * - attributes: List of HTML attributes for each item.
- * - content: The field item content.
- * - entity_type: The entity type to which the field belongs.
- * - field_name: The name of the field.
- * - field_type: The type of the field.
- * - label_display: The display settings for the label.
- *
- * @see field.html.twig
- */
-#}
-{%
- set classes = [
- 'field',
- 'field--name-' ~ field_name|clean_class,
- 'field--type-' ~ field_type|clean_class,
- 'field--label-' ~ label_display,
- ]
-%}
-
- {%- for item in items -%}
- {{ item.content }}
- {%- endfor -%}
-
diff --git a/web/themes/contrib/mediteran/templates/field/field--node--uid.html.twig b/web/themes/contrib/mediteran/templates/field/field--node--uid.html.twig
deleted file mode 100644
index 9afc591b..00000000
--- a/web/themes/contrib/mediteran/templates/field/field--node--uid.html.twig
+++ /dev/null
@@ -1,34 +0,0 @@
-{#
-/**
- * @file
- * Theme override for the node user field.
- *
- * This is an override of field.html.twig for the node user field. See that
- * template for documentation about its details and overrides.
- *
- * Available variables:
- * - attributes: HTML attributes for the containing span element.
- * - items: List of all the field items. Each item contains:
- * - attributes: List of HTML attributes for each item.
- * - content: The field item content.
- * - entity_type: The entity type to which the field belongs.
- * - field_name: The name of the field.
- * - field_type: The type of the field.
- * - label_display: The display settings for the label.
- *
- * @see field.html.twig
- */
-#}
-{%
- set classes = [
- 'field',
- 'field--name-' ~ field_name|clean_class,
- 'field--type-' ~ field_type|clean_class,
- 'field--label-' ~ label_display,
- ]
-%}
-
- {%- for item in items -%}
- {{ item.content }}
- {%- endfor -%}
-
diff --git a/web/themes/contrib/mediteran/templates/field/field--text-long.html.twig b/web/themes/contrib/mediteran/templates/field/field--text-long.html.twig
deleted file mode 100644
index 07ce721d..00000000
--- a/web/themes/contrib/mediteran/templates/field/field--text-long.html.twig
+++ /dev/null
@@ -1 +0,0 @@
-{% extends "field--text.html.twig" %}
diff --git a/web/themes/contrib/mediteran/templates/field/field--text-with-summary.html.twig b/web/themes/contrib/mediteran/templates/field/field--text-with-summary.html.twig
deleted file mode 100644
index 07ce721d..00000000
--- a/web/themes/contrib/mediteran/templates/field/field--text-with-summary.html.twig
+++ /dev/null
@@ -1 +0,0 @@
-{% extends "field--text.html.twig" %}
diff --git a/web/themes/contrib/mediteran/templates/field/field--text.html.twig b/web/themes/contrib/mediteran/templates/field/field--text.html.twig
deleted file mode 100644
index 5d1690c3..00000000
--- a/web/themes/contrib/mediteran/templates/field/field--text.html.twig
+++ /dev/null
@@ -1,28 +0,0 @@
-{% extends "field.html.twig" %}
-{#
-/**
- * @file
- * Default theme implementation for a text field.
- *
- * A 'clearfix' class is added, because 'text' fields have a 'format' property
- * that allows a Text Format to be associated with the entered text, which then
- * applies filtering on output. A common use case is to align images to the left
- * or right, and without this 'clearfix' class, such aligned images may be
- * rendered outside of the 'text' field formatter's boundaries, and hence
- * overlap with other fields. By setting the 'clearfix' class on all 'text'
- * fields, we prevent that.
- *
- * @see https://www.drupal.org/node/2358529
- *
- * A 'text-formatted' class is added to assist with default styling of base
- * elements such as paragraphs and lists that may not have classes assigned to
- * them. This allows user entered content to have default styling without
- * interfering with the styles of other UI components such as system generated
- * lists or other dynamic content.
- *
- * @see https://www.drupal.org/node/2539860
- *
- * @ingroup themeable
- */
-#}
-{% set attributes = attributes.addClass('clearfix', 'text-formatted') %}
diff --git a/web/themes/contrib/mediteran/templates/field/field.html.twig b/web/themes/contrib/mediteran/templates/field/field.html.twig
deleted file mode 100644
index 0b10969a..00000000
--- a/web/themes/contrib/mediteran/templates/field/field.html.twig
+++ /dev/null
@@ -1,80 +0,0 @@
-{#
-/**
- * @file
- * Theme override for a field.
- *
- * To override output, copy the "field.html.twig" from the templates directory
- * to your theme's directory and customize it, just like customizing other
- * Drupal templates such as page.html.twig or node.html.twig.
- *
- * Instead of overriding the theming for all fields, you can also just override
- * theming for a subset of fields using
- * @link themeable Theme hook suggestions. @endlink For example,
- * here are some theme hook suggestions that can be used for a field_foo field
- * on an article node type:
- * - field--node--field-foo--article.html.twig
- * - field--node--field-foo.html.twig
- * - field--node--article.html.twig
- * - field--field-foo.html.twig
- * - field--text-with-summary.html.twig
- * - field.html.twig
- *
- * Available variables:
- * - attributes: HTML attributes for the containing element.
- * - label_hidden: Whether to show the field label or not.
- * - title_attributes: HTML attributes for the title.
- * - label: The label for the field.
- * - multiple: TRUE if a field can contain multiple items.
- * - items: List of all the field items. Each item contains:
- * - attributes: List of HTML attributes for each item.
- * - content: The field item's content.
- * - entity_type: The entity type to which the field belongs.
- * - field_name: The name of the field.
- * - field_type: The type of the field.
- * - label_display: The display settings for the label.
- *
- *
- * @see template_preprocess_field()
- */
-#}
-{%
- set classes = [
- 'field',
- 'field--name-' ~ field_name|clean_class,
- 'field--type-' ~ field_type|clean_class,
- 'field--label-' ~ label_display,
- ]
-%}
-{%
- set title_classes = [
- 'field__label',
- label_display == 'visually_hidden' ? 'visually-hidden',
- ]
-%}
-
-{% if label_hidden %}
- {% if multiple %}
-
- {% for item in items %}
-
{{ item.content }}
- {% endfor %}
-
- {% else %}
- {% for item in items %}
- {{ item.content }}
- {% endfor %}
- {% endif %}
-{% else %}
-
-
{{ label }}
- {% if multiple %}
-
- {% endif %}
- {% for item in items %}
-
{{ item.content }}
- {% endfor %}
- {% if multiple %}
-
- {% endif %}
-
-{% endif %}
diff --git a/web/themes/contrib/mediteran/templates/field/file-audio.html.twig b/web/themes/contrib/mediteran/templates/field/file-audio.html.twig
deleted file mode 100644
index c98725b9..00000000
--- a/web/themes/contrib/mediteran/templates/field/file-audio.html.twig
+++ /dev/null
@@ -1,22 +0,0 @@
-{#
-/**
-* @file
-* Default theme implementation to display the file entity as an audio tag.
-*
-* Available variables:
-* - attributes: An array of HTML attributes, intended to be added to the
-* audio tag.
-* - files: And array of files to be added as sources for the audio tag. Each
-* element is an array with the following elements:
-* - file: The full file object.
-* - source_attributes: An array of HTML attributes for to be added to the
-* source tag.
-*
-* @ingroup themeable
-*/
-#}
-
diff --git a/web/themes/contrib/mediteran/templates/field/file-link.html.twig b/web/themes/contrib/mediteran/templates/field/file-link.html.twig
deleted file mode 100644
index ad93361e..00000000
--- a/web/themes/contrib/mediteran/templates/field/file-link.html.twig
+++ /dev/null
@@ -1,14 +0,0 @@
-{#
-/**
- * @file
- * Theme override for a link to a file.
- *
- * Available variables:
- * - attributes: The HTML attributes for the containing element.
- * - link: A link to the file.
- * - icon: The icon image representing the file type.
- *
- * @see template_preprocess_file_link()
- */
-#}
-{{ icon }} {{ link }}
diff --git a/web/themes/contrib/mediteran/templates/field/file-video.html.twig b/web/themes/contrib/mediteran/templates/field/file-video.html.twig
deleted file mode 100644
index 162fd493..00000000
--- a/web/themes/contrib/mediteran/templates/field/file-video.html.twig
+++ /dev/null
@@ -1,22 +0,0 @@
-{#
-/**
-* @file
-* Default theme implementation to display the file entity as a video tag.
-*
-* Available variables:
-* - attributes: An array of HTML attributes, intended to be added to the
-* video tag.
-* - files: And array of files to be added as sources for the video tag. Each
-* element is an array with the following elements:
-* - file: The full file object.
-* - source_attributes: An array of HTML attributes for to be added to the
-* source tag.
-*
-* @ingroup themeable
-*/
-#}
-
diff --git a/web/themes/contrib/mediteran/templates/field/image-formatter.html.twig b/web/themes/contrib/mediteran/templates/field/image-formatter.html.twig
deleted file mode 100644
index 04a98a35..00000000
--- a/web/themes/contrib/mediteran/templates/field/image-formatter.html.twig
+++ /dev/null
@@ -1,19 +0,0 @@
-{#
-/**
- * @file
- * Theme override to display a formatted image field.
- *
- * Available variables:
- * - image: A collection of image data.
- * - image_style: An optional image style.
- * - path: An optional array containing the link 'path' and link 'options'.
- * - url: An optional URL the image can be linked to.
- *
- * @see template_preprocess_image_formatter()
- */
-#}
-{% if url %}
- {{ image }}
-{% else %}
- {{ image }}
-{% endif %}
diff --git a/web/themes/contrib/mediteran/templates/field/image-style.html.twig b/web/themes/contrib/mediteran/templates/field/image-style.html.twig
deleted file mode 100644
index 039089a3..00000000
--- a/web/themes/contrib/mediteran/templates/field/image-style.html.twig
+++ /dev/null
@@ -1,18 +0,0 @@
-{#
-/**
- * @file
- * Theme override for an image using a specific image style.
- *
- * Available variables:
- * - attributes: HTML attributes for the image, including the following:
- * - src: Full URL or relative path to the image file.
- * - class: One or more classes to be applied to the image.
- * - width: The width of the image (if known).
- * - height: The height of the image (if known).
- * - title: The title of the image.
- * - alt: The alternative text for the image.
- *
- * @see template_preprocess_image_style()
- */
-#}
-{{ image }}
diff --git a/web/themes/contrib/mediteran/templates/field/image.html.twig b/web/themes/contrib/mediteran/templates/field/image.html.twig
deleted file mode 100644
index 31f782bb..00000000
--- a/web/themes/contrib/mediteran/templates/field/image.html.twig
+++ /dev/null
@@ -1,18 +0,0 @@
-{#
-/**
- * @file
- * Theme override of an image.
- *
- * Available variables:
- * - attributes: HTML attributes for the img tag.
- * - style_name: (optional) The name of the image style applied.
- *
- * @see template_preprocess_image()
- */
-#}
-{%
-set classes = [
- style_name ? 'image-style-' ~ style_name|clean_class,
-]
-%}
-
diff --git a/web/themes/contrib/mediteran/templates/field/link-formatter-link-separate.html.twig b/web/themes/contrib/mediteran/templates/field/link-formatter-link-separate.html.twig
deleted file mode 100644
index cb94264c..00000000
--- a/web/themes/contrib/mediteran/templates/field/link-formatter-link-separate.html.twig
+++ /dev/null
@@ -1,22 +0,0 @@
-{#
-/**
- * @file
- * Theme override of a link with separate title and URL elements.
- *
- * Available variables:
- * - link: The link that has already been formatted by l().
- * - title: (optional) A descriptive or alternate title for the link, which may
- * be different than the actual link text.
- *
- * @see template_preprocess()
- * @see template_preprocess_link_formatter_link_separate()
- */
-#}
-{% spaceless %}
-
- {% if title %}
-
{{ title }}
- {% endif %}
-
{{ link }}
-
-{% endspaceless %}
diff --git a/web/themes/contrib/mediteran/templates/field/responsive-image-formatter.html.twig b/web/themes/contrib/mediteran/templates/field/responsive-image-formatter.html.twig
deleted file mode 100644
index 3f302606..00000000
--- a/web/themes/contrib/mediteran/templates/field/responsive-image-formatter.html.twig
+++ /dev/null
@@ -1,17 +0,0 @@
-{#
-/**
- * @file
- * Theme override to display a formatted responsive image field.
- *
- * Available variables:
- * - responsive_image: A collection of responsive image data.
- * - url: An optional URL the image can be linked to.
- *
- * @see template_preprocess_responsive_image_formatter()
- */
-#}
-{% if url %}
- {{ responsive_image }}
-{% else %}
- {{ responsive_image }}
-{% endif %}
diff --git a/web/themes/contrib/mediteran/templates/field/responsive-image.html.twig b/web/themes/contrib/mediteran/templates/field/responsive-image.html.twig
deleted file mode 100644
index ae77ffb1..00000000
--- a/web/themes/contrib/mediteran/templates/field/responsive-image.html.twig
+++ /dev/null
@@ -1,34 +0,0 @@
-{#
-/**
- * @file
- * Theme override of a responsive image.
- *
- * Available variables:
- * - sources: The attributes of the tags for this tag.
- * - img_element: The controlling image, with the fallback image in srcset.
- * - output_image_tag: Whether or not to output an
tag instead of a
- * tag.
- *
- * @see template_preprocess()
- * @see template_preprocess_responsive_image()
- */
-#}
-{% if output_image_tag %}
- {{ img_element }}
-{% else %}
-
- {% if sources %}
- {#
- Internet Explorer 9 doesn't recognise source elements that are wrapped in
- picture tags. See http://scottjehl.github.io/picturefill/#ie9
- #}
-
- {% for source_attributes in sources %}
-
- {% endfor %}
-
- {% endif %}
- {# The controlling image, with the fallback image in srcset. #}
- {{ img_element }}
-
-{% endif %}
diff --git a/web/themes/contrib/mediteran/templates/field/time.html.twig b/web/themes/contrib/mediteran/templates/field/time.html.twig
deleted file mode 100644
index a9e363e4..00000000
--- a/web/themes/contrib/mediteran/templates/field/time.html.twig
+++ /dev/null
@@ -1,22 +0,0 @@
-{#
-/**
- * @file
- * Theme override for a date / time element.
- *
- * Available variables
- * - timestamp: (optional) A UNIX timestamp for the datetime attribute. If the
- * datetime cannot be represented as a UNIX timestamp, use a valid datetime
- * attribute value in attributes.datetime.
- * - text: (optional) The content to display within the