Initial Drupal 11 with DDEV setup
This commit is contained in:
		@ -0,0 +1,48 @@
 | 
			
		||||
{#
 | 
			
		||||
/**
 | 
			
		||||
 * @file
 | 
			
		||||
 * Olivero's implementation to display a block.
 | 
			
		||||
 *
 | 
			
		||||
 * Available variables:
 | 
			
		||||
 * - layout: String that will determine the layout of the block.
 | 
			
		||||
 * - 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.
 | 
			
		||||
 * - in_preview: Whether the plugin is being rendered in preview mode.
 | 
			
		||||
 * - 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.
 | 
			
		||||
 * - content_attributes: Same as attributes, except applied to the main content
 | 
			
		||||
 *   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()
 | 
			
		||||
 *
 | 
			
		||||
 * @ingroup themeable
 | 
			
		||||
 */
 | 
			
		||||
#}
 | 
			
		||||
 | 
			
		||||
{%
 | 
			
		||||
  set classes = [
 | 
			
		||||
    'block',
 | 
			
		||||
    'block-' ~ configuration.provider|clean_class,
 | 
			
		||||
    'block-' ~ plugin_id|clean_class,
 | 
			
		||||
    layout ? 'layout--' ~ layout|clean_class,
 | 
			
		||||
  ]
 | 
			
		||||
%}
 | 
			
		||||
 | 
			
		||||
<div{{ attributes.addClass(classes) }}>
 | 
			
		||||
  {{ title_prefix }}
 | 
			
		||||
  {{ content }}
 | 
			
		||||
  {{ title_suffix }}
 | 
			
		||||
</div>
 | 
			
		||||
@ -0,0 +1,48 @@
 | 
			
		||||
{#
 | 
			
		||||
/**
 | 
			
		||||
 * @file
 | 
			
		||||
 * Olivero's theme implementation for a search form block in the Primary Menu region.
 | 
			
		||||
 *
 | 
			
		||||
 * 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.
 | 
			
		||||
 * - in_preview: Whether the plugin is being rendered in preview mode.
 | 
			
		||||
 * - content: The content of this block.
 | 
			
		||||
 * - content_attributes: A list of HTML attributes applied to the main content
 | 
			
		||||
 * - 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-narrow',
 | 
			
		||||
  ]
 | 
			
		||||
%}
 | 
			
		||||
<div{{ attributes.addClass(classes) }}>
 | 
			
		||||
  {{ title_prefix }}
 | 
			
		||||
  {% if label %}
 | 
			
		||||
    <h2{{ title_attributes }}>{{ label }}</h2>
 | 
			
		||||
  {% endif %}
 | 
			
		||||
  {{ title_suffix }}
 | 
			
		||||
  {% block content %}
 | 
			
		||||
    <div{{ content_attributes.addClass('content') }}>
 | 
			
		||||
      {{ content }}
 | 
			
		||||
    </div>
 | 
			
		||||
  {% endblock %}
 | 
			
		||||
</div>
 | 
			
		||||
@ -0,0 +1,34 @@
 | 
			
		||||
{#
 | 
			
		||||
/**
 | 
			
		||||
 * @file
 | 
			
		||||
 * Olivero's theme implementation for a search form block.
 | 
			
		||||
 *
 | 
			
		||||
 * Available variables:
 | 
			
		||||
 * - content: The content of this block.
 | 
			
		||||
 * - content_attributes: A list of HTML attributes applied to the main content
 | 
			
		||||
 *   tag that appears in the template.
 | 
			
		||||
 *
 | 
			
		||||
 * @see template_preprocess_block()
 | 
			
		||||
 * @see search_preprocess_block()
 | 
			
		||||
 *
 | 
			
		||||
 * @ingroup themeable
 | 
			
		||||
 */
 | 
			
		||||
#}
 | 
			
		||||
{%
 | 
			
		||||
  set classes = [
 | 
			
		||||
    'block',
 | 
			
		||||
    'block-search',
 | 
			
		||||
  ]
 | 
			
		||||
%}
 | 
			
		||||
<div{{ attributes.addClass(classes) }}>
 | 
			
		||||
  {{ title_prefix }}
 | 
			
		||||
  {% if label %}
 | 
			
		||||
    <h2{{ title_attributes }}>{{ label }}</h2>
 | 
			
		||||
  {% endif %}
 | 
			
		||||
  {{ title_suffix }}
 | 
			
		||||
  {% block content %}
 | 
			
		||||
    <div{{ content_attributes.addClass('content', 'container-inline') }}>
 | 
			
		||||
      {{ content }}
 | 
			
		||||
    </div>
 | 
			
		||||
  {% endblock %}
 | 
			
		||||
</div>
 | 
			
		||||
@ -0,0 +1,56 @@
 | 
			
		||||
{#
 | 
			
		||||
/**
 | 
			
		||||
 * @file
 | 
			
		||||
 * Theme implementation for a search form block in the Secondary Menu region.
 | 
			
		||||
 *
 | 
			
		||||
 * Available variables:
 | 
			
		||||
 * - content: The content of this block.
 | 
			
		||||
 * - content_attributes: A list of HTML attributes applied to the main content
 | 
			
		||||
 *   tag that appears in the template.
 | 
			
		||||
 * - label: The configured label of the block if visible.
 | 
			
		||||
 * - 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_block()
 | 
			
		||||
 * @see search_preprocess_block()
 | 
			
		||||
 *
 | 
			
		||||
 * @ingroup themeable
 | 
			
		||||
 */
 | 
			
		||||
#}
 | 
			
		||||
{%
 | 
			
		||||
  set classes = [
 | 
			
		||||
    'block',
 | 
			
		||||
    'block-search-wide',
 | 
			
		||||
  ]
 | 
			
		||||
%}
 | 
			
		||||
<div{{ attributes.addClass(classes) }}>
 | 
			
		||||
  {{ title_prefix }}
 | 
			
		||||
  {% if label %}
 | 
			
		||||
    <h2{{ title_attributes }}>{{ label }}</h2>
 | 
			
		||||
  {% endif %}
 | 
			
		||||
  {{ title_suffix }}
 | 
			
		||||
  {% block content %}
 | 
			
		||||
    <button class="block-search-wide__button" aria-label="{{ 'Search Form'|t }}" data-drupal-selector="block-search-wide-button">
 | 
			
		||||
      {% include "@olivero/../images/search.svg" %}
 | 
			
		||||
      <span class="block-search-wide__button-close"></span>
 | 
			
		||||
    </button>
 | 
			
		||||
 | 
			
		||||
    {#
 | 
			
		||||
      Add tabindex=“-1” to prevent Safari from closing search bar when the submit button is clicked with a mouse.
 | 
			
		||||
      @see https://www.drupal.org/project/drupal/issues/3269716
 | 
			
		||||
      @see https://bugs.webkit.org/show_bug.cgi?id=229895
 | 
			
		||||
    #}
 | 
			
		||||
    <div{{ content_attributes.addClass('block-search-wide__wrapper').setAttribute('data-drupal-selector', 'block-search-wide-wrapper').setAttribute('tabindex', '-1') }}>
 | 
			
		||||
      <div class="block-search-wide__container">
 | 
			
		||||
        <div class="block-search-wide__grid">
 | 
			
		||||
          {{ content }}
 | 
			
		||||
        </div>
 | 
			
		||||
      </div>
 | 
			
		||||
    </div>
 | 
			
		||||
  {% endblock %}
 | 
			
		||||
</div>
 | 
			
		||||
@ -0,0 +1,57 @@
 | 
			
		||||
{#
 | 
			
		||||
/**
 | 
			
		||||
 * @file
 | 
			
		||||
 * Olivero's override for the User Account Menu navigation 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.
 | 
			
		||||
 * - in_preview: Whether the plugin is being rendered in preview mode.
 | 
			
		||||
 * - 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 https://juicystudio.com/article/screen-readers-display-none.php and
 | 
			
		||||
 * https://www.w3.org/TR/WCAG-TECHS/H42.html for more information.
 | 
			
		||||
 */
 | 
			
		||||
#}
 | 
			
		||||
{%
 | 
			
		||||
  set classes = [
 | 
			
		||||
  'block',
 | 
			
		||||
  'block-menu',
 | 
			
		||||
  'navigation',
 | 
			
		||||
  'menu--' ~ derivative_plugin_id|clean_class,
 | 
			
		||||
  'secondary-nav',
 | 
			
		||||
]
 | 
			
		||||
%}
 | 
			
		||||
{% set heading_id = attributes.id ~ '-menu'|clean_id %}
 | 
			
		||||
<nav {{ attributes.addClass(classes).setAttribute('aria-labelledby', heading_id).setAttribute('role', 'navigation') }}>
 | 
			
		||||
  {# Label. If not displayed, we still provide it for screen readers. #}
 | 
			
		||||
  {% if not configuration.label_display %}
 | 
			
		||||
    {% set title_attributes = title_attributes.addClass('visually-hidden') %}
 | 
			
		||||
  {% endif %}
 | 
			
		||||
  {{ title_prefix }}
 | 
			
		||||
  <span{{ title_attributes.setAttribute('id', heading_id) }}>{{ configuration.label }}</span>
 | 
			
		||||
  {{ title_suffix }}
 | 
			
		||||
  {# Menu. #}
 | 
			
		||||
  {% block content %}
 | 
			
		||||
    {{ content }}
 | 
			
		||||
  {% endblock %}
 | 
			
		||||
</nav>
 | 
			
		||||
@ -0,0 +1,37 @@
 | 
			
		||||
{% extends "block.html.twig" %}
 | 
			
		||||
{#
 | 
			
		||||
/**
 | 
			
		||||
 * @file
 | 
			
		||||
 * Olivero's theme implementation 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.
 | 
			
		||||
 */
 | 
			
		||||
#}
 | 
			
		||||
{% set attributes = attributes.addClass('site-branding') %}
 | 
			
		||||
{% block content %}
 | 
			
		||||
  <div class="site-branding__inner">
 | 
			
		||||
    {% if site_logo %}
 | 
			
		||||
      <a href="{{ path('<front>') }}" rel="home" class="site-branding__logo">
 | 
			
		||||
        <img src="{{ site_logo }}" alt="{{ 'Home'|t }}" fetchpriority="high"/>
 | 
			
		||||
      </a>
 | 
			
		||||
    {% endif %}
 | 
			
		||||
    {% if site_name or site_slogan %}
 | 
			
		||||
      <div class="site-branding__text">
 | 
			
		||||
        {% if site_name %}
 | 
			
		||||
          <div class="site-branding__name">
 | 
			
		||||
            <a href="{{ path('<front>') }}" rel="home" title="{{ 'Home'|t }}">{{ site_name }}</a>
 | 
			
		||||
          </div>
 | 
			
		||||
        {% endif %}
 | 
			
		||||
        {% if site_slogan %}
 | 
			
		||||
          <div class="site-branding__slogan">{{ site_slogan }}</div>
 | 
			
		||||
        {% endif %}
 | 
			
		||||
      </div>
 | 
			
		||||
    {% endif %}
 | 
			
		||||
  </div>
 | 
			
		||||
{% endblock %}
 | 
			
		||||
@ -0,0 +1,56 @@
 | 
			
		||||
{#
 | 
			
		||||
/**
 | 
			
		||||
 * @file
 | 
			
		||||
 * Olivero's override for the main menu navigation 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.
 | 
			
		||||
 * - in_preview: Whether the plugin is being rendered in preview mode.
 | 
			
		||||
 * - 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 https://juicystudio.com/article/screen-readers-display-none.php and
 | 
			
		||||
 * https://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 %}
 | 
			
		||||
<nav {{ attributes.addClass(classes).setAttribute('aria-labelledby', heading_id).setAttribute('role', 'navigation') }}>
 | 
			
		||||
  {# Label. If not displayed, we still provide it for screen readers. #}
 | 
			
		||||
  {% if not configuration.label_display %}
 | 
			
		||||
    {% set title_attributes = title_attributes.addClass('visually-hidden') %}
 | 
			
		||||
  {% endif %}
 | 
			
		||||
  {{ title_prefix }}
 | 
			
		||||
  <h2{{ title_attributes.addClass('block__title').setAttribute('id', heading_id) }}>{{ configuration.label }}</h2>
 | 
			
		||||
  {{ title_suffix }}
 | 
			
		||||
  {# Menu. #}
 | 
			
		||||
  {% block content %}
 | 
			
		||||
    {{ content }}
 | 
			
		||||
  {% endblock %}
 | 
			
		||||
</nav>
 | 
			
		||||
@ -0,0 +1,21 @@
 | 
			
		||||
{% extends "block.html.twig" %}
 | 
			
		||||
{#
 | 
			
		||||
/**
 | 
			
		||||
 * @file
 | 
			
		||||
 * Olivero's theme implementation for Powered by Drupal block.
 | 
			
		||||
 *
 | 
			
		||||
 * The Powered by Drupal block is an optional link to the home page of the
 | 
			
		||||
 * Drupal project.
 | 
			
		||||
 *
 | 
			
		||||
 */
 | 
			
		||||
#}
 | 
			
		||||
{% block content %}
 | 
			
		||||
  {{ attach_library('olivero/powered-by-block') }}
 | 
			
		||||
  <span>
 | 
			
		||||
    {% trans %}Powered by{% endtrans %}
 | 
			
		||||
    <a href="https://www.drupal.org">{% trans %}Drupal{% endtrans %}</a>
 | 
			
		||||
    <span class="drupal-logo" role="img" aria-label="{{ 'Drupal Logo'|t }}">
 | 
			
		||||
      {% include "@olivero/../images/drupal.svg" %}
 | 
			
		||||
    </span>
 | 
			
		||||
  </span>
 | 
			
		||||
{% endblock %}
 | 
			
		||||
							
								
								
									
										55
									
								
								web/core/themes/olivero/templates/block/block.html.twig
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										55
									
								
								web/core/themes/olivero/templates/block/block.html.twig
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,55 @@
 | 
			
		||||
{#
 | 
			
		||||
/**
 | 
			
		||||
 * @file
 | 
			
		||||
 * Olivero's implementation to display a block.
 | 
			
		||||
 *
 | 
			
		||||
 * Available variables:
 | 
			
		||||
 * - layout: String that will determine the layout of the block.
 | 
			
		||||
 * - 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.
 | 
			
		||||
 * - in_preview: Whether the plugin is being rendered in preview mode.
 | 
			
		||||
 * - 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.
 | 
			
		||||
 * - content_attributes: Same as attributes, except applied to the main content
 | 
			
		||||
 *   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()
 | 
			
		||||
 *
 | 
			
		||||
 * @ingroup themeable
 | 
			
		||||
 */
 | 
			
		||||
#}
 | 
			
		||||
 | 
			
		||||
{%
 | 
			
		||||
  set classes = [
 | 
			
		||||
    'block',
 | 
			
		||||
    'block-' ~ configuration.provider|clean_class,
 | 
			
		||||
    'block-' ~ plugin_id|clean_class,
 | 
			
		||||
    layout ? 'layout--' ~ layout|clean_class,
 | 
			
		||||
  ]
 | 
			
		||||
%}
 | 
			
		||||
 | 
			
		||||
<div{{ attributes.addClass(classes) }}>
 | 
			
		||||
  {{ title_prefix }}
 | 
			
		||||
  {% if label %}
 | 
			
		||||
    <h2{{ title_attributes.addClass('block__title') }}>{{ label }}</h2>
 | 
			
		||||
  {% endif %}
 | 
			
		||||
  {{ title_suffix }}
 | 
			
		||||
  {% block content %}
 | 
			
		||||
    <div{{ content_attributes.addClass('block__content') }}>
 | 
			
		||||
      {{ content }}
 | 
			
		||||
    </div>
 | 
			
		||||
  {% endblock %}
 | 
			
		||||
</div>
 | 
			
		||||
		Reference in New Issue
	
	Block a user