diff --git a/_bootstrap_barrio.layouts.yml b/_bootstrap_barrio.layouts.yml deleted file mode 100644 index c3eee859a35e640ec7901cafea58065820c3ad2f..0000000000000000000000000000000000000000 --- a/_bootstrap_barrio.layouts.yml +++ /dev/null @@ -1,62 +0,0 @@ -bb_cardbasic: - label: Card basic - category: Barrio - template: templates/ds/layout--ds-card-basic - class: '\Drupal\ds\Plugin\DsLayout' - regions: - first: - label: Content -bb_cardtopimage: - label: Card top image - category: Barrio - template: templates/ds/layout--ds-card-top-image - class: '\Drupal\ds\Plugin\DsLayout' - regions: - first: - label: Image - second: - label: Content -bb_cardimageoverlay: - label: Card image overlay - category: Barrio - template: templates/ds/layout--ds-card-image-overlay - class: '\Drupal\ds\Plugin\DsLayout' - regions: - first: - label: Image - second: - label: Content -bb_cardheaderfooter: - label: Card header footer - category: Barrio - template: templates/ds/layout--ds-card-header-footer - class: '\Drupal\ds\Plugin\DsLayout' - regions: - first: - label: Header - second: - label: Content - third: - label: Footer -bb_card3stack: - label: Card three block stacked - category: Barrio - template: templates/ds/layout--ds-card-3stack - class: '\Drupal\ds\Plugin\DsLayout' - regions: - first: - label: First - second: - label: Image - third: - label: Second -bb_media: - label: Media - category: Barrio - template: templates/ds/layout--ds-media - class: '\Drupal\ds\Plugin\DsLayout' - regions: - first: - label: Image - second: - label: Content diff --git a/bootstrap_barrio.layouts.yml b/bootstrap_barrio.layouts.yml index 29d38ac2764c9992858bd43defae37fde16e8656..3e16c85b50ff1becc23da8bb29df339dc6528d01 100644 --- a/bootstrap_barrio.layouts.yml +++ b/bootstrap_barrio.layouts.yml @@ -185,65 +185,3 @@ barrio_col4-equal: label: Fourth bottom: label: Bottom -bb_cardbasic: - label: Card basic (Display Suite) - category: Barrio DS - template: templates/ds/layout--ds-card-basic - class: '\Drupal\ds\Plugin\DsLayout' - regions: - first: - label: Content -bb_cardtopimage: - label: Card top image (Display Suite) - category: Barrio DS - template: templates/ds/layout--ds-card-top-image - class: '\Drupal\ds\Plugin\DsLayout' - regions: - first: - label: Image - second: - label: Content -bb_cardimageoverlay: - label: Card image overlay (Display Suite) - category: Barrio DS - template: templates/ds/layout--ds-card-image-overlay - class: '\Drupal\ds\Plugin\DsLayout' - regions: - first: - label: Image - second: - label: Content -bb_cardheaderfooter: - label: Card header footer (Display Suite) - category: Barrio DS - template: templates/ds/layout--ds-card-header-footer - class: '\Drupal\ds\Plugin\DsLayout' - regions: - first: - label: Header - second: - label: Content - third: - label: Footer -bb_card3stack: - label: Card three block stacked (Display Suite) - category: Barrio DS - template: templates/ds/layout--ds-card-3stack - class: '\Drupal\ds\Plugin\DsLayout' - regions: - first: - label: First - second: - label: Image - third: - label: Second -bb_media: - label: Media (Display Suite) - category: Barrio DS - template: templates/ds/layout--ds-media - class: '\Drupal\ds\Plugin\DsLayout' - regions: - first: - label: Image - second: - label: Content diff --git a/templates/block/block--breadcrumb.html.twig b/templates/block/block--breadcrumb.html.twig deleted file mode 100644 index c3859872a228734c2fe48081bbe06630edf4e4fd..0000000000000000000000000000000000000000 --- a/templates/block/block--breadcrumb.html.twig +++ /dev/null @@ -1,21 +0,0 @@ -{% extends "@classy/block/block--system-menu-block.html.twig" %} -{# -/** - * @file - * Bartik's theme implementation for a menu block. - * - * @ingroup themeable - */ -#} -{% set show_anchor = "show-" ~ attributes.id|clean_id %} -{% set hide_anchor = "hide-" ~ attributes.id|clean_id %} -{% block content %} - <div{{ content_attributes.addClass('content') }}> - {# When rendering a menu without label, render a menu toggle. #} - <div class="menu-toggle-target menu-toggle-target-show" id="{{ show_anchor }}"></div> - <div class="menu-toggle-target" id="{{ hide_anchor }}"></div> - <a class="menu-toggle" href="#{{ show_anchor }}">{{ 'Menu'|t }}</a> - <a class="menu-toggle menu-toggle--hide" href="#{{ hide_anchor }}">{{ 'Menu'|t }}</a> - {{ content }} - </div> -{% endblock %} diff --git a/templates/block/block--card.html.twig b/templates/block/block--card.html.twig deleted file mode 100644 index e825d16c66cb0a3914f117fc96b8d0a5b770f400..0000000000000000000000000000000000000000 --- a/templates/block/block--card.html.twig +++ /dev/null @@ -1,53 +0,0 @@ -{# -/** - * @file - * Default theme implementation 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. - * - 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, - 'card', - ] -%} -<div{{ attributes.addClass(classes) }}> - {{ title_prefix }} - {% if label %} - <div class="card-header"> - <h2{{ title_attributes }}>{{ label }}</h2> - </div> - {% endif %} - {{ title_suffix }} - {% block content %} - <div{{ content_attributes.addClass(['content', 'card-body']) }}> - {{ content }} - </div> - {% endblock %} -</div> diff --git a/templates/block/block--local-actions-block.html.twig b/templates/block/block--local-actions-block.html.twig deleted file mode 100644 index 8bd5de7e550e001d32a3241e9e9b08e5af04bab4..0000000000000000000000000000000000000000 --- a/templates/block/block--local-actions-block.html.twig +++ /dev/null @@ -1,12 +0,0 @@ -{% extends "@bootstrap_barrio/block/block.html.twig" %} -{# -/** - * @file - * Theme override for local actions (primary admin actions.) - */ -#} -{% block content %} - {% if content %} - <nav class="action-links">{{ content }}</nav> - {% endif %} -{% endblock %} diff --git a/templates/block/block--local-tasks-block.html.twig b/templates/block/block--local-tasks-block.html.twig deleted file mode 100644 index aa161ee4a9bd0fd115632caae15940a9b038f1aa..0000000000000000000000000000000000000000 --- a/templates/block/block--local-tasks-block.html.twig +++ /dev/null @@ -1,13 +0,0 @@ -{# extends @bootstrap_barrio/layout/block.html.twig -/** - * @file - * Theme override for tabs. - */ -#} -{% block content %} - {% if content %} - <nav class="tabs" role="navigation" aria-label="{{ 'Tabs'|t }}"> - {{ content }} - </nav> - {% endif %} -{% endblock %} diff --git a/templates/block/block--search-form-block.html.twig b/templates/block/block--search-form-block.html.twig deleted file mode 100644 index 743f69e89777ecde6a646780f2558a8650b23097..0000000000000000000000000000000000000000 --- a/templates/block/block--search-form-block.html.twig +++ /dev/null @@ -1,23 +0,0 @@ -{% extends "@bootstrap_barrio/block/block.html.twig" %} -{# -/** - * @file - * Bartik's theme implementation for a search form block. Extends Classy's - * search form block template. - * - * 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 - */ -#} -{% block content %} - <div{{ content_attributes.addClass('content', 'container-inline') }}> - {{ parent() }} - </div> -{% endblock %} diff --git a/templates/block/block--system-branding-block.html.twig b/templates/block/block--system-branding-block.html.twig deleted file mode 100644 index ca99b92026e1e350fa12f70bd33ab9f3d74900ce..0000000000000000000000000000000000000000 --- a/templates/block/block--system-branding-block.html.twig +++ /dev/null @@ -1,28 +0,0 @@ -{# -/** - * @file - * Bootstrap Barrio'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') %} - {% if site_logo or site_name %} - <a href="{{ path('<front>') }}" title="{{ 'Home'|t }}" rel="home" class="navbar-brand"> - {% if site_logo %} - <img src="{{ site_logo }}" alt="{{ 'Home'|t }}" class="img-fluid d-inline-block align-top" /> - {% endif %} - {{ site_name }} - </a> - {% endif %} - {% if site_slogan %} - <div class="d-inline-block align-top site-name-slogan"> - {{ site_slogan }} - </div> - {% endif %} diff --git a/templates/block/block--system-menu-block.html.twig b/templates/block/block--system-menu-block.html.twig deleted file mode 100644 index e2b2f03f13be48350a816ac761b3df28c98dae18..0000000000000000000000000000000000000000 --- a/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 %} -<nav role="navigation" aria-labelledby="{{ heading_id }}"{{ attributes.addClass(classes)|without('role', 'aria-labelledby') }}> - {# Label. If not displayed, we still provide it for screen readers. #} - {% if not configuration.label_display %} - {% set title_attributes = title_attributes.addClass('sr-only') %} - {% endif %} - {{ title_prefix }} - <h2{{ title_attributes.setAttribute('id', heading_id) }}>{{ configuration.label }}</h2> - {{ title_suffix }} - - {# Menu. #} - {% block content %} - {{ content }} - {% endblock %} -</nav> diff --git a/templates/block/block.html.twig b/templates/block/block.html.twig deleted file mode 100644 index 9d8be22ee9f75a6404d0b37aa463ed9c5dce73b1..0000000000000000000000000000000000000000 --- a/templates/block/block.html.twig +++ /dev/null @@ -1,50 +0,0 @@ -{# -/** - * @file - * Default theme implementation 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. - * - 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, - ] -%} -<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> diff --git a/templates/block/form--search-block-form.html.twig b/templates/block/form--search-block-form.html.twig deleted file mode 100644 index 2810c094d6e3ad423618124a6d2dea5387b10b20..0000000000000000000000000000000000000000 --- a/templates/block/form--search-block-form.html.twig +++ /dev/null @@ -1,15 +0,0 @@ -{# -/** - * @file - * Default theme implementation for a 'form' element. - * - * Available variables: - * - attributes: A list of HTML attributes for the wrapper element. - * - children: The child elements of the form. - * - * @see template_preprocess_form() - */ -#} -<form{{ attributes.addClass('search-form', 'search-block-form', 'form-row') }}> - {{ children }} -</form> diff --git a/templates/commerce/address/address-plain.html.twig b/templates/commerce/address/address-plain.html.twig deleted file mode 100644 index a1aa1455f0044d1e354eb028cdda15b7ac181e43..0000000000000000000000000000000000000000 --- a/templates/commerce/address/address-plain.html.twig +++ /dev/null @@ -1,64 +0,0 @@ -{# -/** - * @file - * Default template for the 'plain' address formatter. - * - * Available variables: - * - given_name: Given name. - * - additional_name: Additional name. - * - family_name: Family name. - * - organization: Organization. - * - address_line1: First address line. - * - address_line2: Second address line. - * - postal_code: Postal code. - * - sorting_code: Sorting code. - * - dependent_locality: The dependent locality. - * - dependent_locality.code: Dependent locality code. - * - dependent_locality.name: Dependent locality name. - * - locality: The locality subdivision. - * - locality.code: Locality code. - * - locality.name: Locality name. - * - administrative_area: The administrative area subdivision. - * - administrative_area.code: Administrative area code. - * - administrative_area.name: Administrative area name. - * - country: The country. - * - country.code: Country code. - * - country.name: Country name. - * - * if a subdivision (dependent_locality, locality, administrative_area) was - * entered, the array will always have a code. If it's a predefined subdivision, - * it will also have a name. The code is always prefered. - * - * @ingroup themeable - */ -#} -<div class="address" translate="no"> - {% if given_name or family_name %} - <h2>{{ given_name }} {{ family_name }}</h2> - {% endif %} - <dl class="row"> - {% if organization %} - <dt class="col-sm-3">{% trans %}Organization{% endtrans %}:</dt> - <dd class="col-sm-9">{{ organization }}</dd> - {% endif %} - {% if address_line1 %} - <dt class="col-sm-3">{% trans %}Address{% endtrans %}:</dt> - <dd class="col-sm-9"> - <p>{{ address_line1 }}</p> - {% if address_line2 %} - <p>{{ address_line2 }}</p> - {% endif %} - </dd> - {% endif %} - <dt class="col-sm-3">{% trans %}Locality{% endtrans %}:</dt> - <dd class="col-sm-9"> - {% if dependent_locality.code %} - <p>{{ dependent_locality.code }}</p> - {% endif %} - {% if locality.code or postal_code or administrative_area.code %} - <p>{{ locality.code }} {{ postal_code }} {{ administrative_area.code }}</p> - {% endif %} - <p>{{ country.name }}</p> - </dd> - </dl> -</div> diff --git a/templates/commerce/cart/commerce-cart-block.html.twig b/templates/commerce/cart/commerce-cart-block.html.twig deleted file mode 100644 index b34cc3b9a3f4a0839edf57fa8368d66c1f116658..0000000000000000000000000000000000000000 --- a/templates/commerce/cart/commerce-cart-block.html.twig +++ /dev/null @@ -1,20 +0,0 @@ -<div{{ attributes}}> - <div class="cart-block--summary"> - <a class="cart-block--link__expand" href="{{ url }}"> - <span class="cart-block--summary__icon">{{ icon }}</span> - <span class="cart-block--summary__count">{{ count_text }}</span> - </a> - </div> - {% if content %} - <div class="cart-block--contents"> - <div class="cart-block--contents__inner"> - <div class="cart-block--contents__items"> - {{ content }} - </div> - <div class="cart-block--contents__links"> - {{ links }} - </div> - </div> - </div> - {% endif %} -</div> diff --git a/templates/commerce/cart/commerce-cart-empty-page.html.twig b/templates/commerce/cart/commerce-cart-empty-page.html.twig deleted file mode 100644 index 57e2e915a10b4155b24db5ff5999140a192b4cce..0000000000000000000000000000000000000000 --- a/templates/commerce/cart/commerce-cart-empty-page.html.twig +++ /dev/null @@ -1,12 +0,0 @@ -{# -/** - * @file - * - * Empty cart page template. - * - * @ingroup themeable - */ -#} -<div class="cart-empty-page"> - {{ 'Your shopping cart is empty.'|t }} -</div> diff --git a/templates/commerce/checkout/commerce-checkout-completion-message.html.twig b/templates/commerce/checkout/commerce-checkout-completion-message.html.twig deleted file mode 100644 index 5c8727f8bc73425b143f1be2f8de4873926250b5..0000000000000000000000000000000000000000 --- a/templates/commerce/checkout/commerce-checkout-completion-message.html.twig +++ /dev/null @@ -1,23 +0,0 @@ -{# -/** - * @file - * Default theme implementation for the completion message. - * - * Available variables: - * - order_entity: The order entity. - * - payment_instructions: The payment instructions, if provided. - * - * @ingroup themeable - */ -#} -<div class="checkout-complete"> - {{ 'Your order number is @number.'|t({'@number': order_entity.getOrderNumber}) }} <br> - {{ 'You can view your order on your account page when logged in.'|t }} <br> - - {% if payment_instructions %} - <div class="checkout-complete__payment-instructions"> - <h2>{{ 'Payment instructions'|t }}</h2> - {{ payment_instructions }} - </div> - {% endif %} -</div> diff --git a/templates/commerce/checkout/commerce-checkout-completion-register.html.twig b/templates/commerce/checkout/commerce-checkout-completion-register.html.twig deleted file mode 100644 index 0a7fecc4dec678ff49ed136c92b5a32de7815847..0000000000000000000000000000000000000000 --- a/templates/commerce/checkout/commerce-checkout-completion-register.html.twig +++ /dev/null @@ -1,20 +0,0 @@ -{# -/** - * @file - * A layout for the checkout registration form - * - * Available variables: - * - form: The form. - * - * @ingroup themeable - */ -#} -<div class="commerce-checkout-completion-register"> - <div class="commerce-checkout-completion-register__text"> - <h2>{%trans%}Create your account{%endtrans%}</h2> - <p>{%trans%}Set a password to save your details for next time.{%endtrans%}</p> - </div> - <div class="commerce-checkout-completion-register__form"> - {{ form }} - </div> -</div> diff --git a/templates/commerce/checkout/commerce-checkout-form--with-sidebar.html.twig b/templates/commerce/checkout/commerce-checkout-form--with-sidebar.html.twig deleted file mode 100644 index 4fae43c54ce81ba7b6c753b34177d6a4ad67c2ab..0000000000000000000000000000000000000000 --- a/templates/commerce/checkout/commerce-checkout-form--with-sidebar.html.twig +++ /dev/null @@ -1,25 +0,0 @@ -{# -/** - * @file - * Two column template for the checkout form. - * - * Available variables: - * - form: The form. - * - * @ingroup themeable - */ -#} -<div class="layout-checkout-form"> - <div class="row"> - <div class="col-sm-6"> - {{ form|without('sidebar', 'actions') }} - </div> - <div class="col-sm-6"> - <h3>{% trans %} Order Summary {% endtrans %}</h3> - {{ form.sidebar }} - </div> - </div> - <div class="layout-region-checkout-footer"> - {{ form.actions }} - </div> -</div> diff --git a/templates/commerce/checkout/commerce-checkout-form.html.twig b/templates/commerce/checkout/commerce-checkout-form.html.twig deleted file mode 100644 index 192015d96030a5b04e6c108da5154efbb1a7aa3f..0000000000000000000000000000000000000000 --- a/templates/commerce/checkout/commerce-checkout-form.html.twig +++ /dev/null @@ -1,14 +0,0 @@ -{# -/** - * @file - * Two column template for the checkout form. - * - * Available variables: - * - form: The form. - * - * @ingroup themeable - */ -#} -<div class="layout-checkout-form clearfix"> - {{ form }} -</div> diff --git a/templates/commerce/checkout/commerce-checkout-order-summary.html.twig b/templates/commerce/checkout/commerce-checkout-order-summary.html.twig deleted file mode 100644 index b402c18aadeaf01b03e4b44442063394d09136d8..0000000000000000000000000000000000000000 --- a/templates/commerce/checkout/commerce-checkout-order-summary.html.twig +++ /dev/null @@ -1,44 +0,0 @@ -{# -/** - * @file - * Default theme implementation for the checkout order summary. - * - * The rendered order totals come from commerce-order-total-summary.html.twig. - * See commerce-order-receipt.html.twig for examples of manual total theming. - * - * Available variables: - * - order_entity: The order entity. - * - checkout_step: The current checkout step. - * - totals: An array of order total values with the following keys: - * - subtotal: The order subtotal price. - * - adjustments: An array of adjustment totals: - * - type: The adjustment type. - * - label: The adjustment label. - * - total: The adjustment total price. - * - weight: The adjustment weight, taken from the adjustment type. - * - total: The order total price. - * - rendered_totals: The rendered order totals. - */ -#} -<div{{ attributes.addClass('checkout-order-summary', 'table-responsive-sm') }}> - {% block order_items %} - <table class="table table-striped table-hover table-sm"> - <tbody> - {% for order_item in order_entity.getItems %} - <tr> - <td>{{ order_item.getQuantity|number_format }} x</td> - {% if order_item.hasPurchasedEntity %} - <td>{{ order_item.getPurchasedEntity|commerce_entity_render('summary') }}</td> - {% else %} - <td>{{- order_item.label -}}</td> - {% endif %} - <td>{{- order_item.getTotalPrice|commerce_price_format -}}</td> - </tr> - {% endfor %} - </tbody> - </table> - {% endblock %} - {% block totals %} - {{ rendered_totals }} - {% endblock %} -</div> \ No newline at end of file diff --git a/templates/commerce/checkout/commerce-checkout-pane.html.twig b/templates/commerce/checkout/commerce-checkout-pane.html.twig deleted file mode 100644 index c393ee0c780b2393e16a5cd1f3ff87cca507e4eb..0000000000000000000000000000000000000000 --- a/templates/commerce/checkout/commerce-checkout-pane.html.twig +++ /dev/null @@ -1,12 +0,0 @@ -{# -/** - * @file - * Default theme implementation for checkout panes. - * - * Available variables: - * - elements: The checkout pane's form elements. - * - * @ingroup themeable - */ -#} -{{ elements }} diff --git a/templates/commerce/checkout/commerce-checkout-progress.html.twig b/templates/commerce/checkout/commerce-checkout-progress.html.twig deleted file mode 100644 index 077103241eb9083b58049d0eaf00a4864b0da456..0000000000000000000000000000000000000000 --- a/templates/commerce/checkout/commerce-checkout-progress.html.twig +++ /dev/null @@ -1,19 +0,0 @@ -{# -/** - * @file - * Default theme implementation for the checkout progress. - * - * Available variables: - * - steps: An array of steps, where each step has the following keys: - * - id: The step ID. - * - label: The step label. - * - position: 'previous', 'current' or 'next'. - * - * @ingroup themeable - */ -#} -<ol class="checkout-progress clearfix"> - {% for step in steps %} - <li class="checkout-progress--step checkout-progress--step__{{ step.position }}">{{ step.label }}</li> - {% endfor %} -</ol> diff --git a/templates/commerce/commerce-cart-flyout/commerce-cart-flyout-add-to-cart-attributes-radios.html.twig b/templates/commerce/commerce-cart-flyout/commerce-cart-flyout-add-to-cart-attributes-radios.html.twig deleted file mode 100644 index 5bfe93e004a03cd9541e3f347146fd102fa01dd6..0000000000000000000000000000000000000000 --- a/templates/commerce/commerce-cart-flyout/commerce-cart-flyout-add-to-cart-attributes-radios.html.twig +++ /dev/null @@ -1,17 +0,0 @@ -<fieldset class="fieldgroup form-composite required js-form-item form-item js-form-wrapper form-wrapper" aria-required="true"> - <legend> - <span class="fieldset-legend js-form-required form-required"><%= label %></span> - </legend> - <div class="fieldset-wrapper"> - <div class="form-radios"> - <% _.each(attributeValues, function(currentValue, key) { %> - <div class="custom-control custom-radio js-form-item form-item js-form-type-radio form-type-radio js-form-item-purchased-entity-attributes-attribute-<%= attributeId %> form-item-purchased-entity-attributes-attribute-<%= attributeId %>"> - <input type="radio" class="custom-control-input form-radio" name="attribute_<%= attributeId %>" id="attribute_<%= attributeId %>_<%= currentValue.attribute_value_id %>" value="<%= currentValue.attribute_value_id %>" <%= (activeValue === currentValue.attribute_value_id) ? 'checked' : '' %>/> - <label class="custom-control-label control-label option" for="attribute_<%= attributeId %>_<%= currentValue.attribute_value_id %>"> - <%= currentValue.name %> - </label> - </div> - <% }); %> - </div> - </div> -</fieldset> diff --git a/templates/commerce/commerce-cart-flyout/commerce-cart-flyout-add-to-cart-attributes-rendered.html.twig b/templates/commerce/commerce-cart-flyout/commerce-cart-flyout-add-to-cart-attributes-rendered.html.twig deleted file mode 100644 index 86abf53abb53f7f541fb7cdb67be46b48381c80e..0000000000000000000000000000000000000000 --- a/templates/commerce/commerce-cart-flyout/commerce-cart-flyout-add-to-cart-attributes-rendered.html.twig +++ /dev/null @@ -1,17 +0,0 @@ -<fieldset class="product--rendered-attribute fieldgroup form-composite required js-form-item form-item js-form-wrapper form-wrapper" aria-required="true"> - <legend> - <span class="fieldset-legend js-form-required form-required"><%= label %></span> - </legend> - <div class="fieldset-wrapper"> - <div class="form-radios"> - <% _.each(attributeValues, function(currentValue, key) { %> - <div class="custom-control custom-radio js-form-item form-item js-form-type-radio form-type-radio js-form-item-purchased-entity-attributes-attribute-<%= attributeId %> form-item-purchased-entity-attributes-attribute-<%= attributeId %>"> - <input type="radio" class="custom-control-input form-radio" name="attribute_<%= attributeId %>" id="attribute_<%= attributeId %>_<%= currentValue.attribute_value_id %>" value="<%= currentValue.attribute_value_id %>" <%= (activeValue === currentValue.attribute_value_id) ? 'checked' : '' %>/> - <label class="custom-control-label control-label option" for="attribute_<%= attributeId %>_<%= currentValue.attribute_value_id %>"> - <% print (currentValue.output) %> - </label> - </div> - <% }); %> - </div> - </div> -</fieldset> diff --git a/templates/commerce/commerce-cart-flyout/commerce-cart-flyout-add-to-cart-attributes-select.html.twig b/templates/commerce/commerce-cart-flyout/commerce-cart-flyout-add-to-cart-attributes-select.html.twig deleted file mode 100644 index 8d0aa99fe5360af9773cbccb5d6c76ac35ac69a4..0000000000000000000000000000000000000000 --- a/templates/commerce/commerce-cart-flyout/commerce-cart-flyout-add-to-cart-attributes-select.html.twig +++ /dev/null @@ -1,10 +0,0 @@ -<div class="js-form-item form-item js-form-type-select form-type-select js-form-item-purchased-entity-attributes-attribute-<%= attributeId %> form-item-purchased-entity-attributes-attribute-<%= attributeId %>"> - <label for="edit-purchased-entity-attributes-attribute-<%= attributeId %>" class="js-form-required form-required"><%= label %></label> - <select id="edit-purchased-entity-attributes-attribute-<%= attributeId %>" name="attribute_<%= attributeId %>" class="form-select required custom-select" required="required" aria-required="true"> - <% _.each(attributeValues, function(currentValue, key) { %> - <option value="<%= currentValue.attribute_value_id %>" <%= (activeValue === currentValue.attribute_value_id) ? 'selected' : '' %>> - <%= currentValue.name %> - </option> - <% }); %> - </select> -</div> diff --git a/templates/commerce/commerce-cart-flyout/commerce-cart-flyout-add-to-cart-button.html.twig b/templates/commerce/commerce-cart-flyout/commerce-cart-flyout-add-to-cart-button.html.twig deleted file mode 100644 index 03bd61c8693ad76528af78b17d63d78dbccc8658..0000000000000000000000000000000000000000 --- a/templates/commerce/commerce-cart-flyout/commerce-cart-flyout-add-to-cart-button.html.twig +++ /dev/null @@ -1,3 +0,0 @@ -<div class="form-actions form-group js-form-wrapper form-wrapper"> - <input class="btn btn-primary js-form-submit form-submit" type="submit" value="{{ 'Add to cart'|t }}" /> -</div> diff --git a/templates/commerce/commerce-cart-flyout/commerce-cart-flyout-add-to-cart-variation-select.html.twig b/templates/commerce/commerce-cart-flyout/commerce-cart-flyout-add-to-cart-variation-select.html.twig deleted file mode 100644 index dfe9b9ea14daf4de43435e5ed38de3e48448884f..0000000000000000000000000000000000000000 --- a/templates/commerce/commerce-cart-flyout/commerce-cart-flyout-add-to-cart-variation-select.html.twig +++ /dev/null @@ -1,5 +0,0 @@ -<select class="custom-select"> - <% _.each(variations, function(variation, key) { %> - <option value="<%= variation.uuid %>"><%= variation.title %></option> - <% }) %> -</select> diff --git a/templates/commerce/commerce-cart-flyout/commerce-cart-flyout-block-icon.html.twig b/templates/commerce/commerce-cart-flyout/commerce-cart-flyout-block-icon.html.twig deleted file mode 100644 index f6f29b03df38d0ec02e607b9c55a5fd7b1dea85b..0000000000000000000000000000000000000000 --- a/templates/commerce/commerce-cart-flyout/commerce-cart-flyout-block-icon.html.twig +++ /dev/null @@ -1 +0,0 @@ -<img src="<%= icon %>" alt="Cart"/> diff --git a/templates/commerce/commerce-cart-flyout/commerce-cart-flyout-block.html.twig b/templates/commerce/commerce-cart-flyout/commerce-cart-flyout-block.html.twig deleted file mode 100644 index 30c028c4dd788e9f0f174f1861075087365a5a96..0000000000000000000000000000000000000000 --- a/templates/commerce/commerce-cart-flyout/commerce-cart-flyout-block.html.twig +++ /dev/null @@ -1,8 +0,0 @@ -<div class="cart--cart-block"> - <div class="cart-block--summary"> - <a class="cart-block--link__expand" href="<%= url %>"> - <span class="cart-block--summary__icon" /> - <span class="cart-block--summary__count"><%= count_text %></span> - </a> - </div> -</div> diff --git a/templates/commerce/commerce-cart-flyout/commerce-cart-flyout-offcanvas-contents-items.html.twig b/templates/commerce/commerce-cart-flyout/commerce-cart-flyout-offcanvas-contents-items.html.twig deleted file mode 100644 index 3a6c4792c310b653a2ac14924e6cc47ccea2ec5a..0000000000000000000000000000000000000000 --- a/templates/commerce/commerce-cart-flyout/commerce-cart-flyout-offcanvas-contents-items.html.twig +++ /dev/null @@ -1,24 +0,0 @@ -<table class="cart-block--offcanvas-cart-table table"> - <tbody> - <% _.each(cart.order_items, function(orderItem, key) { %> - <tr> - <td class="cart-block--offcanvas-cart-table__title"><%- orderItem.title %></td> - <td class="cart-block--offcanvas-cart-table__quantity field--name-quantity"> - <input type="number" data-key="<% print(key) %>" min="1" value="<% print(parseInt(orderItem.quantity)) %>" style="width: 35px" /> - </td> - <td class="cart-block--offcanvas-cart-table__price"><%= orderItem.total_price.formatted %></td> - <td class="cart-block--offcanvas-cart-table__remove"> - <button value="<% print(JSON.stringify([cart.order_id, orderItem.order_item_id])) %>" class="button btn">x</button> - </td> - </tr> - <% }) %> - </tbody> - <tfoot> - <tr> - <td></td> - <td colspan="3"> - <button type="submit" class="cart-block--offcanvas-contents__update button btn btn-primary">{{ 'Update quantities'|t }}</button> - </td> - </tr> - </tfoot> -</table> diff --git a/templates/commerce/commerce-cart-flyout/commerce-cart-flyout-offcanvas-contents.html.twig b/templates/commerce/commerce-cart-flyout/commerce-cart-flyout-offcanvas-contents.html.twig deleted file mode 100644 index 1f284d30abc85274f0bc437504450b3766997edc..0000000000000000000000000000000000000000 --- a/templates/commerce/commerce-cart-flyout/commerce-cart-flyout-offcanvas-contents.html.twig +++ /dev/null @@ -1,3 +0,0 @@ -<% _.each(carts, function(cart) { %> - <div data-cart-contents='cart.order_id) %>'></div> -<% }); %> diff --git a/templates/commerce/commerce-cart-flyout/commerce-cart-flyout-offcanvas.html.twig b/templates/commerce/commerce-cart-flyout/commerce-cart-flyout-offcanvas.html.twig deleted file mode 100644 index 42af668bb7233cf6f481d9ef9032b80b97dc6219..0000000000000000000000000000000000000000 --- a/templates/commerce/commerce-cart-flyout/commerce-cart-flyout-offcanvas.html.twig +++ /dev/null @@ -1,19 +0,0 @@ -<div class="cart--cart-offcanvas"> - <div class="cart--cart-offcanvas__close"> - <button type="button" class="close button btn" aria-label="Close"> - <span aria-hidden="true">×</span> - </button> - </div> -<% if (count > 0) { %> - <div class="cart-block--offcanvas-contents"> - <div class="cart-block--offcanvas-contents__inner"> - <div class="cart-block--offcanvas-contents__items"></div> - <div class="cart-block--offcanvas-contents__links"> - <%= links %> - </div> - </div> - </div> -<% } else { %> - <div>{{ 'Your cart is empty'|t }}</div> -<% } %> -</div> diff --git a/templates/commerce/order/commerce-order--admin.html.twig b/templates/commerce/order/commerce-order--admin.html.twig deleted file mode 100644 index 7da3eb3535fa5576cc76f4425d3e77cc004853e4..0000000000000000000000000000000000000000 --- a/templates/commerce/order/commerce-order--admin.html.twig +++ /dev/null @@ -1,90 +0,0 @@ -{# -/** - * @file - * Order template used on the admin order page. - * - * Available variables: - * - attributes: HTML attributes for the wrapper. - * - order: The rendered order fields. - * Use 'order' to print them all, or print a subset such as - * 'order.order_number'. Use the following code to exclude the - * printing of a given field: - * @code - * {{ order|without('order_number') }} - * @endcode - * - order_entity: The order entity. - * - * @ingroup themeable - */ -#} - -{{ attach_library('commerce_order/form') }} -{% set order_state = order_entity.getState.getLabel %} - -<div class="layout-order-form clearfix"> - <div class="layout-region layout-region-order-main"> - {{ order.order_items }} - {{ order.total_price }} - - {% if order.activity %} - <h2>{% trans %}Order activity{% endtrans %}</h2> - {{ order.activity }} - {% endif %} - </div> - <div class="layout-region layout-region-order-secondary"> - <div class="entity-meta"> - <div class="entity-meta__header"> - <h3 class="entity-meta__title"> - {{ order_state }} - </h3> - {% for key in ['completed', 'placed', 'changed'] %} - {% if order[key] %} - <div class="form-item"> - {{ order[key] }} - </div> - {% endif %} - {% endfor %} - </div> - <details open class="seven-details"> - <summary role="button" class="seven-details__summary"> - {{ 'Customer Information'|t }} - </summary> - <div class="details-wrapper seven-details__wrapper"> - {% for key in ['uid', 'mail', 'ip_address'] %} - {% if order[key] %} - <div class="form-item"> - {{ order[key] }} - </div> - {% endif %} - {% endfor %} - </div> - </details> - {% if order.billing_information %} - <details open class="seven-details"> - <summary role="button" class="seven-details__summary"> - {{ 'Billing information'|t }} - </summary> - <div class="details-wrapper seven-details__wrapper"> - {{ order.billing_information }} - </div> - </details> - {% endif %} - {% if order.shipping_information %} - <details open class="seven-details"> - <summary role="button" class="seven-details__summary"> - {{ 'Shipping information'|t }} - </summary> - <div class="details-wrapper seven-details__wrapper"> - {{ order.shipping_information }} - </div> - </details> - {% endif %} - {# If the order has possible transitions, render the field for transition buttons. #} - {% if order_entity.getState.getTransitions is not empty %} - <div class="entity-meta__header"> - {{ order.state }} - </div> - {% endif %} - </div> - </div> -</div> diff --git a/templates/commerce/order/commerce-order--user.html.twig b/templates/commerce/order/commerce-order--user.html.twig deleted file mode 100644 index d669c55e2c479a8ac660f0e7d7ec00a96d803b9f..0000000000000000000000000000000000000000 --- a/templates/commerce/order/commerce-order--user.html.twig +++ /dev/null @@ -1,43 +0,0 @@ -{# -/** - * @file - * Template for orders in the 'user' view mode. - * - * Available variables: - * - attributes: HTML attributes for the wrapper. - * - order: The rendered order fields. - * Use 'order' to print them all, or print a subset such as - * 'order.order_number'. Use the following code to exclude the - * printing of a given field: - * @code - * {{ order|without('order_number') }} - * @endcode - * - order_entity: The order entity. - * - * @ingroup themeable - */ -#} -<div{{ attributes }}> - <div class="customer-information"> - {{ order.mail }} - {% if order.shipping_information %} - <div class="customer-information__shipping"> - <div class="field__label">{{ 'Shipping information'|t }}</div> - {{ order.shipping_information }} - </div> - {% endif %} - {% if order.billing_information %} - <div class="customer-billing"> - <div class="field__label">{{ 'Billing information'|t }}</div> - {{ order.billing_information }} - </div> - {% endif %} - </div> - <div class="order-information"> - {{ order.completed }} - {{ order.placed }} - {{ order.state }} - {{ order.order_items }} - {{ order.total_price }} - </div> -</div> diff --git a/templates/commerce/order/commerce-order-add-list.html.twig b/templates/commerce/order/commerce-order-add-list.html.twig deleted file mode 100644 index 5dd0a9b515ad200e518969ddec6700a6a2718820..0000000000000000000000000000000000000000 --- a/templates/commerce/order/commerce-order-add-list.html.twig +++ /dev/null @@ -1,31 +0,0 @@ -{# -/** - * @file - * Default theme implementation to list order types available for creating an - * order. - * - * Available variables: - * - types: A list of content types, each with the following properties: - * - add_link: Link to create a piece of content of this type. - * - description: Description of this type of content. - * - * @see template_preprocess_commerce_order_add_list() - * - * @ingroup themeable - */ -#} -{% if types is not empty %} - <dl class="order-type-list"> - {% for type in types %} - <dt>{{ type.add_link }}</dt> - <dd>{{ type.description }}</dd> - {% endfor %} - </dl> -{% else %} - <p> - {% set create_order_type = path('entity.commerce_order_type.add_form') %} - {% trans %} - You have not created any order types yet. Go to the <a href="{{ create_order_type }}">order type creation page</a> to add a new order type. - {% endtrans %} - </p> -{% endif %} diff --git a/templates/commerce/order/commerce-order-edit-form.html.twig b/templates/commerce/order/commerce-order-edit-form.html.twig deleted file mode 100644 index f0a279070b9901760da763f9c7665a5da2289ea2..0000000000000000000000000000000000000000 --- a/templates/commerce/order/commerce-order-edit-form.html.twig +++ /dev/null @@ -1,22 +0,0 @@ -{# -/** - * @file - * Two column template for the order edit form. - * - * Available variables: - * - form: The form. - * - * @ingroup themeable - */ -#} -<div class="layout-order-form clearfix"> - <div class="layout-region layout-region-order-main"> - {{ form|without('advanced', 'actions') }} - </div> - <div class="layout-region layout-region-order-secondary"> - {{ form.advanced }} - </div> - <div class="layout-region layout-region-order-footer"> - {{ form.actions }} - </div> -</div> diff --git a/templates/commerce/order/commerce-order-receipt.html.twig b/templates/commerce/order/commerce-order-receipt.html.twig deleted file mode 100644 index 97328d89d68b67a32d468670b30fb6e40d1803a0..0000000000000000000000000000000000000000 --- a/templates/commerce/order/commerce-order-receipt.html.twig +++ /dev/null @@ -1,148 +0,0 @@ -{# -/** - * @file - * Template for the order receipt. - * - * Available variables: - * - order_entity: The order entity. - * - billing_information: The billing information. - * - shipping_information: The shipping information. - * - payment_method: The payment method. - * - totals: An array of order totals values with the following keys: - * - subtotal: The order subtotal price. - * - adjustments: An array of adjustment totals: - * - type: The adjustment type. - * - label: The adjustment label. - * - total: The adjustment total price. - * - weight: The adjustment weight, taken from the adjustment type. - * - total: The order total price. - * - * @ingroup themeable - */ -#} -<table style="margin: 15px auto 0 auto; max-width: 768px; font-family: arial,sans-serif"> - <tbody> - <tr> - <td> - <table style="margin-left: auto; margin-right: auto; max-width: 768px; text-align: center;"> - <tbody> - <tr> - <td> - <a href="{{ url('<front>') }}" style="color: #0e69be; text-decoration: none; font-weight: bold; margin-top: 15px;">{{ order_entity.getStore.label }}</a> - </td> - </tr> - </tbody> - </table> - <table style="text-align: center; min-width: 450px; margin: 5px auto 0 auto; border: 1px solid #cccccc; border-radius: 5px; padding: 40px 30px 30px 30px;"> - <tbody> - <tr> - <td style="font-size: 30px; padding-bottom: 30px">{{ 'Order Confirmation'|t }}</td> - </tr> - <tr> - <td style="font-weight: bold; padding-top:15px; padding-bottom: 15px; text-align: left; border-top: 1px solid #cccccc; border-bottom: 1px solid #cccccc"> - {{ 'Order #@number details:'|t({'@number': order_entity.getOrderNumber}) }} - </td> - </tr> - <tr> - <td> - {% block order_items %} - <table style="padding-top: 15px; padding-bottom:15px; width: 100%"> - <tbody style="text-align: left;"> - {% for order_item in order_entity.getItems %} - <tr> - <td> - {{ order_item.getQuantity|number_format }} x - </td> - <td> - <span>{{ order_item.label }}</span> - <span style="float: right;">{{ order_item.getTotalPrice|commerce_price_format }}</span> - </td> - </tr> - {% endfor %} - </tbody> - </table> - {% endblock %} - </td> - </tr> - <tr> - <td> - {% if (billing_information or shipping_information) %} - <table style="width: 100%; padding-top:15px; padding-bottom: 15px; text-align: left; border-top: 1px solid #cccccc; border-bottom: 1px solid #cccccc"> - <tbody> - <tr> - {% if shipping_information %} - <td style="padding-top: 5px; font-weight: bold;">{{ 'Shipping Information'|t }}</td> - {% endif %} - {% if billing_information %} - <td style="padding-top: 5px; font-weight: bold;">{{ 'Billing Information'|t }}</td> - {% endif %} - </tr> - <tr> - {% if shipping_information %} - <td> - {% block shipping_information %} - {{ shipping_information }} - {% endblock %} - </td> - {% endif %} - {% if billing_information %} - <td> - {% block billing_information %} - {{ billing_information }} - {% endblock %} - </td> - {% endif %} - </tr> - {% if payment_method %} - <tr> - <td style="font-weight: bold; margin-top: 10px;">{{ 'Payment Method'|t }}</td> - </tr> - <tr> - <td> - {% block payment_method %} - {{ payment_method }} - {% endblock %} - </td> - </tr> - {% endif %} - </tbody> - </table> - {% endif %} - </td> - </tr> - <tr> - <td> - <p style="margin-bottom: 0;"> - {{ 'Subtotal: @subtotal'|t({'@subtotal': totals.subtotal|commerce_price_format}) }} - </p> - </td> - </tr> - {% for adjustment in totals.adjustments %} - <tr> - <td> - <p style="margin-bottom: 0;"> - {{ adjustment.label }}: {{ adjustment.total|commerce_price_format }} - </p> - </td> - </tr> - {% endfor %} - <tr> - <td> - <p style="font-size: 24px; padding-top: 15px; padding-bottom: 5px;"> - {{ 'Order Total: @total'|t({'@total': order_entity.getTotalPrice|commerce_price_format}) }} - </p> - </td> - </tr> - <tr> - <td> - {% block additional_information %} - {{ 'Thank you for your order!'|t }} - {% endblock %} - </td> - </tr> - </tbody> - </table> - </td> - </tr> - </tbody> -</table> diff --git a/templates/commerce/order/commerce-order-total-summary.html.twig b/templates/commerce/order/commerce-order-total-summary.html.twig deleted file mode 100644 index f151a3b7ec1bd421e260f10e5cd8a87a3af8d0d1..0000000000000000000000000000000000000000 --- a/templates/commerce/order/commerce-order-total-summary.html.twig +++ /dev/null @@ -1,34 +0,0 @@ -{# -/** - * @file - * Default order total summary template. - * - * Available variables: - * - attributes: HTML attributes for the wrapper. - * - order_entity: The order entity. - * - totals: An array of order totals values with the following keys: - * - subtotal: The order subtotal price. - * - adjustments: The adjustments: - * - type: The adjustment type. - * - label: The adjustment label. - * - amount: The adjustment amount. - * - percentage: The decimal adjustment percentage, when available. For example, "0.2" for a 20% adjustment. - * - total: The order total price. - * - * @ingroup themeable - */ -#} -{{ attach_library('commerce_order/total_summary') }} -<div{{ attributes }}> - <div class="order-total-line order-total-line__subtotal"> - <span class="order-total-line-label">{{ 'Subtotal'|t }} </span><span class="order-total-line-value">{{ totals.subtotal|commerce_price_format }}</span> - </div> - {% for adjustment in totals.adjustments %} - <div class="order-total-line order-total-line__adjustment order-total-line__adjustment--{{ adjustment.type|clean_class }}"> - <span class="order-total-line-label">{{ adjustment.label }} </span><span class="order-total-line-value">{{ adjustment.amount|commerce_price_format }}</span> - </div> - {% endfor %} - <div class="order-total-line order-total-line__total"> - <span class="order-total-line-label">{{ 'Total'|t }} </span><span class="order-total-line-value">{{ totals.total|commerce_price_format }}</span> - </div> -</div> diff --git a/templates/commerce/order/commerce-order.html.twig b/templates/commerce/order/commerce-order.html.twig deleted file mode 100644 index 2ed29e836744e9c788edcdb32e8ac50b7ede0017..0000000000000000000000000000000000000000 --- a/templates/commerce/order/commerce-order.html.twig +++ /dev/null @@ -1,22 +0,0 @@ -{# -/** - * @file - * Default order template. - * - * Available variables: - * - attributes: HTML attributes for the wrapper. - * - order: The rendered order fields. - * Use 'order' to print them all, or print a subset such as - * 'order.order_number'. Use the following code to exclude the - * printing of a given field: - * @code - * {{ order|without('order_number') }} - * @endcode - * - order_entity: The order entity. - * - * @ingroup themeable - */ -#} -<div{{ attributes }}> - {{ order }} -</div> diff --git a/templates/commerce/payment/commerce-payment-method--credit-card.html.twig b/templates/commerce/payment/commerce-payment-method--credit-card.html.twig deleted file mode 100644 index 8f2d1f1ff0dc6d58329343e644c5575c801ec957..0000000000000000000000000000000000000000 --- a/templates/commerce/payment/commerce-payment-method--credit-card.html.twig +++ /dev/null @@ -1,32 +0,0 @@ -{# -/** - * @file - * - * Default template for credit card payment methods. - * - * Available variables: - * - attributes: HTML attributes for the wrapper. - * - payment_method: The rendered payment_method fields. - * Use 'payment_method' to print them all, or print a subset such as - * 'payment_method.label'. Use the following code to exclude the - * printing of a given field: - * @code - * {{ payment_method|without('label') }} - * @endcode - * - payment_method_entity: The payment_method entity. - * - * @ingroup themeable - */ -#} -<article{{ attributes }}> - <div class="field field--name-label"> - {{ payment_method.label }} - <span class="payment-method-icon payment-method-icon--{{ payment_method_entity.card_type.value }}"></span> - </div> - {% if payment_method_entity.isReusable and payment_method_entity.expiresTime %} - <div class="field field--name-expires"> - {{ 'Expires'|t }} {{ payment_method_entity.expiresTime|format_date('custom', 'n/Y') }} - </div> - {% endif %} - {{ payment_method.billing_profile }} -</article> diff --git a/templates/commerce/payment/commerce-payment-method.html.twig b/templates/commerce/payment/commerce-payment-method.html.twig deleted file mode 100644 index 5aef18bf9a0f7f62c0062d56041926bf2707b3c0..0000000000000000000000000000000000000000 --- a/templates/commerce/payment/commerce-payment-method.html.twig +++ /dev/null @@ -1,31 +0,0 @@ -{# -/** - * @file - * - * Default template for payment methods. - * - * Available variables: - * - attributes: HTML attributes for the wrapper. - * - payment_method: The rendered payment_method fields. - * Use 'payment_method' to print them all, or print a subset such as - * 'payment_method.label'. Use the following code to exclude the - * printing of a given field: - * @code - * {{ payment_method|without('label') }} - * @endcode - * - payment_method_entity: The payment_method entity. - * - * @ingroup themeable - */ -#} -<article{{ attributes }}> - <div class="field field--name-label"> - {{ payment_method.label }} - </div> - {% if payment_method_entity.isReusable and payment_method_entity.expiresTime %} - <div class="field field--name-expires"> - {{ 'Expires'|t }} {{ payment_method_entity.expiresTime|format_date('custom', 'n/Y') }} - </div> - {% endif %} - {{ payment_method.billing_profile }} -</article> diff --git a/templates/commerce/price/commerce-price-plain.html.twig b/templates/commerce/price/commerce-price-plain.html.twig deleted file mode 100644 index 3e93cef856ff03efd1adbaef9b6d33cf6cfeec12..0000000000000000000000000000000000000000 --- a/templates/commerce/price/commerce-price-plain.html.twig +++ /dev/null @@ -1,14 +0,0 @@ -{# -/** - * @file - * Default theme implementation for displaying a price. - * - * Used by the 'commerce_price_plain' formatter. - * Available variables: - * - number: The number. - * - currency: The currency entity. - * - * @ingroup themeable - */ -#} -{{ number|number_format(2, '.', ',') }} {{ currency.currencyCode }} diff --git a/templates/commerce/products/commerce-product-attribute-value.html.twig b/templates/commerce/products/commerce-product-attribute-value.html.twig deleted file mode 100644 index 89f48cc55d35186c175edc32ecd588d2c5c2ae4e..0000000000000000000000000000000000000000 --- a/templates/commerce/products/commerce-product-attribute-value.html.twig +++ /dev/null @@ -1,23 +0,0 @@ -{# -/** - * @file - * - * Default template for product attribute values. - * - * Available variables: - * - attributes: HTML attributes for the wrapper. - * - product_attribute_value: The rendered product attribute value fields. - * Use 'product_attribute_value' to print them all, or print a subset such as - * 'product_attribute_value.name'. Use the following code to exclude the - * printing of a given field: - * @code - * {{ product_attribute_value|without('name') }} - * @endcode - * - product_attribute_value_entity: The product attribute value entity. - * - * @ingroup themeable - */ -#} -<div{{ attributes }}> - {{- product_attribute_value -}} -</div> diff --git a/templates/commerce/products/commerce-product-form.html.twig b/templates/commerce/products/commerce-product-form.html.twig deleted file mode 100644 index 4a1c7faf2fca6e4bc1e409434501d8e39ff843d2..0000000000000000000000000000000000000000 --- a/templates/commerce/products/commerce-product-form.html.twig +++ /dev/null @@ -1,25 +0,0 @@ -{# -/** - * @file - * Two column template for the product add/edit form. - * - * Available variables: - * - form: The form. - * - * @ingroup themeable - */ -#} -<div class="layout-product-form clearfix"> - <div class="layout-region layout-region-product-main"> - {{ form|without('advanced', 'footer', 'actions') }} - </div> - <div class="layout-region layout-region-product-secondary"> - {{ form.advanced }} - </div> - <div class="layout-region layout-region-product-footer"> - <div class="layout-region-product-footer__content"> - {{ form.footer }} - {{ form.actions }} - </div> - </div> -</div> diff --git a/templates/commerce/products/commerce-product-variation.html.twig b/templates/commerce/products/commerce-product-variation.html.twig deleted file mode 100644 index b1824b2ad33dae5a23c0f7bcceb0e7cd3260f566..0000000000000000000000000000000000000000 --- a/templates/commerce/products/commerce-product-variation.html.twig +++ /dev/null @@ -1,24 +0,0 @@ -{# -/** - * @file - * - * Default template for product variations. - * - * Available variables: - * - attributes: HTML attributes for the wrapper. - * - product_variation: The rendered product variation fields. - * Use 'product_variation' to print them all, or print a subset such as - * 'product_variation.title'. Use the following code to exclude the - * printing of a given field: - * @code - * {{ product_variation|without('title') }} - * @endcode - * - product_variation_entity: The product variation entity. - * - product_url: The product URL. - * - * @ingroup themeable - */ -#} -<div{{ attributes }}> - {{- product_variation -}} -</div> diff --git a/templates/commerce/products/commerce-product.html.twig b/templates/commerce/products/commerce-product.html.twig deleted file mode 100644 index 6ccafe289919e617196b70dca1241f008303ab47..0000000000000000000000000000000000000000 --- a/templates/commerce/products/commerce-product.html.twig +++ /dev/null @@ -1,27 +0,0 @@ -{# -/** - * @file - * - * Default product template. - * - * Available variables: - * - attributes: HTML attributes for the wrapper. - * - product: The rendered product fields. - * Use 'product' to print them all, or print a subset such as - * 'product.title'. Use the following code to exclude the - * printing of a given field: - * @code - * {{ product|without('title') }} - * @endcode - * - product_entity: The product entity. - * - product_url: The product URL. - * - * @ingroup themeable - */ -#} -<article{{ attributes }}> - <div class="row"> - <div class="col-sm-6">{{- product|without('variation_attributes', 'field_imagen') -}}</div> - <div class="photo col-sm-6">{{ product.field_imagen }}</div> - </div> -</article> diff --git a/templates/commerce/promotion/commerce-coupon-redemption-form.html.twig b/templates/commerce/promotion/commerce-coupon-redemption-form.html.twig deleted file mode 100644 index c71818bec85fe2cb458545a01444beeadbaa32ec..0000000000000000000000000000000000000000 --- a/templates/commerce/promotion/commerce-coupon-redemption-form.html.twig +++ /dev/null @@ -1,37 +0,0 @@ -{# -/** - * @file - * Template for the coupon redemption form. - * - * Available variables: - * - form: The form. Contains the currently applied coupons in form.coupons, - * each containing a code, display_name, remove_button. - * For example: form.coupons.0.code. - * - * @ingroup themeable - */ -#} -{% if form.coupons|length %} - {% if form['#cardinality'] == 1 %} - <div class="coupon-redemption-form__coupons coupon-redemption-form__coupons--single"> - <p> - <br>{{ 'You applied the coupon %code to the order.'|t({'%code': form.coupons.0.code|render}) }} - </p> - {{ form.coupons.0.remove_button }} - </div> - {% else %} - <div class="coupon-redemption-form__coupons coupon-redemption-form__coupons--multiple"> - <h3> {{ 'Applied coupons'|t }} </h3> - <table> - {% for key, coupon in form.coupons if key|first != '#' %} - <tr> - <td> {{ coupon.code }} </td> - <td> {{ coupon.remove_button }} </td> - </tr> - {% endfor %} - </table> - </div> - {% endif %} -{% endif %} - -{{ form|without('coupons') }} diff --git a/templates/commerce/promotion/commerce-promotion-form.html.twig b/templates/commerce/promotion/commerce-promotion-form.html.twig deleted file mode 100644 index ed72f8cfea5ba8adf9a8ece55c4dc7c51499053a..0000000000000000000000000000000000000000 --- a/templates/commerce/promotion/commerce-promotion-form.html.twig +++ /dev/null @@ -1,22 +0,0 @@ -{# -/** - * @file - * Template for the promotion add/edit form. - * - * Available variables: - * - form: The form. - * - * @ingroup themeable - */ -#} -<div class="layout-promotion-form clearfix"> - <div class="layout-region layout-region-promotion-main"> - {{ form|without('advanced', 'actions') }} - </div> - <div class="layout-region layout-region-promotion-secondary"> - {{ form.advanced }} - </div> - <div class="layout-region layout-region-promotion-footer"> - {{ form.actions }} - </div> -</div> diff --git a/templates/commerce/promotion/commerce-promotion.html.twig b/templates/commerce/promotion/commerce-promotion.html.twig deleted file mode 100644 index e3a306062fe3ce43f8be50796dee2af4494a4699..0000000000000000000000000000000000000000 --- a/templates/commerce/promotion/commerce-promotion.html.twig +++ /dev/null @@ -1,24 +0,0 @@ -{# -/** - * @file - * - * Default template for promotions. - * - * Available variables: - * - attributes: HTML attributes for the wrapper. - * - promotion: The rendered promotion fields. - * Use 'promotion' to print them all, or print a subset such as - * 'promotion.name'. Use the following code to exclude the - * printing of a given field: - * @code - * {{ promotion|without('name') }} - * @endcode - * - promotion_entity: The promotion entity. - * - promotion_url: The promotion URL. - * - * @ingroup themeable - */ -#} -<article{{ attributes }}> - {{ promotion }} -</article> diff --git a/templates/commerce/store/commerce-store.html.twig b/templates/commerce/store/commerce-store.html.twig deleted file mode 100644 index 351af20edea513953cddb2577f64b876f0b0ee84..0000000000000000000000000000000000000000 --- a/templates/commerce/store/commerce-store.html.twig +++ /dev/null @@ -1,24 +0,0 @@ -{# -/** - * @file - * - * Default template for stores. - * - * Available variables: - * - attributes: HTML attributes for the wrapper. - * - store: The rendered store fields. - * Use 'store' to print them all, or print a subset such as - * 'store.name'. Use the following code to exclude the - * printing of a given field: - * @code - * {{ store|without('name') }} - * @endcode - * - store_entity: The store entity. - * - store_url: The store URL. - * - * @ingroup themeable - */ -#} -<article{{ attributes }}> - {{ store }} -</article> diff --git a/templates/content-edit/file-managed-file.html.twig b/templates/content-edit/file-managed-file.html.twig deleted file mode 100644 index e7ae48d3fe2c04a54fed58a71620e587c7dfd2d1..0000000000000000000000000000000000000000 --- a/templates/content-edit/file-managed-file.html.twig +++ /dev/null @@ -1,22 +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() - */ -#} -{{ attach_library('classy/file') }} -{% - set classes = [ - 'js-form-managed-file', - 'form-managed-file', - ] -%} -<div{{ attributes.addClass(classes) }}> - {{ element }} -</div> diff --git a/templates/content-edit/file-upload-help.html.twig b/templates/content-edit/file-upload-help.html.twig deleted file mode 100644 index d05822ebcbd49870cfa8e590fd467c04475778d5..0000000000000000000000000000000000000000 --- a/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('<br />') }} diff --git a/templates/content-edit/file-widget-multiple.html.twig b/templates/content-edit/file-widget-multiple.html.twig deleted file mode 100644 index 34646fe7796b1204850362dd07b1970f1c933327..0000000000000000000000000000000000000000 --- a/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/templates/content-edit/file-widget.html.twig b/templates/content-edit/file-widget.html.twig deleted file mode 100644 index 23d03a1ae18eeb5b45648ed7899a9bf8be6172ff..0000000000000000000000000000000000000000 --- a/templates/content-edit/file-widget.html.twig +++ /dev/null @@ -1,16 +0,0 @@ -{# -/** - * @file - * Theme override to display a file widget. - * - * Available variables: - * - element: Form element for the managed file. - * - attributes: Remaining HTML attributes for the containing element. - * - * @see template_preprocess_file_widget() - */ -#} -{{ attach_library('classy/file') }} -<div{{ attributes }}> - {{ element }} -</div> diff --git a/templates/content-edit/filter-caption.html.twig b/templates/content-edit/filter-caption.html.twig deleted file mode 100644 index 1e35795fc153cc516987f5157e7edac1e728437f..0000000000000000000000000000000000000000 --- a/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. - */ -#} -<figure role="group" class="caption caption-{{ tag }}{%- if classes %} {{ classes }}{%- endif %}"> -{{ node }} -<figcaption>{{ caption }}</figcaption> -</figure> diff --git a/templates/content-edit/filter-guidelines.html.twig b/templates/content-edit/filter-guidelines.html.twig deleted file mode 100644 index afef2d2cfb37a41943a26e9c98cee45d81a36eb7..0000000000000000000000000000000000000000 --- a/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, - ] -%} -<div{{ attributes.addClass(classes) }}> - <h4 class="label">{{ format.label }}</h4> - {{ tips }} -</div> diff --git a/templates/content-edit/filter-tips.html.twig b/templates/content-edit/filter-tips.html.twig deleted file mode 100644 index 25ed49d6ae18a9ef97a71308518f9fb998a5bce3..0000000000000000000000000000000000000000 --- a/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 %} - <h2>{{ 'Text Formats'|t }}</h2> -{% endif %} - -{% if tips|length %} - {% if multiple %} - <div class="compose-tips"> - {% endif %} - - {% for name, tip in tips %} - {% if multiple %} - {% - set tip_classes = [ - 'filter-type', - 'filter-' ~ name|clean_class, - ] - %} - <div{{ tip.attributes.addClass(tip_classes) }}> - <h3>{{ tip.name }}</h3> - {% endif %} - - {% if tip.list|length %} - <ul class="tips"> - {% for item in tip.list %} - {% - set item_classes = [ - long ? 'filter-' ~ item.id|replace({'/': '-'}), - ] - %} - <li{{ item.attributes.addClass(item_classes) }}>{{ item.tip }}</li> - {% endfor %} - </ul> - {% endif %} - - {% if multiple %} - </div> - {% endif %} - {% endfor %} - - {% if multiple %} - </div> - {% endif %} -{% endif %} diff --git a/templates/content-edit/image-widget.html.twig b/templates/content-edit/image-widget.html.twig deleted file mode 100644 index 5e8033ffaee2d4f38cc821b8b86769e5e4e7a7e4..0000000000000000000000000000000000000000 --- a/templates/content-edit/image-widget.html.twig +++ /dev/null @@ -1,24 +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() - */ -#} -{{ attach_library('classy/image-widget') }} -<div{{ attributes }}> - {% if data.preview %} - <div class="image-preview"> - {{ data.preview }} - </div> - {% endif %} - <div class="image-widget-data"> - {# Render widget data without the image preview that was output already. #} - {{ data|without('preview') }} - </div> -</div> diff --git a/templates/content-edit/node-add-list.html.twig b/templates/content-edit/node-add-list.html.twig deleted file mode 100644 index f38fe3a5c67d5d97ae6dbdd0e67debfee7c0df99..0000000000000000000000000000000000000000 --- a/templates/content-edit/node-add-list.html.twig +++ /dev/null @@ -1,30 +0,0 @@ -{# -/** - * @file - * Theme override to list node types available for adding content. - * - * This list is displayed on the Add content admin page. - * - * Available variables: - * - types: A list of content types, each with the following properties: - * - add_link: Link to create a piece of content of this type. - * - description: Description of this type of content. - * - * @see template_preprocess_node_add_list() - */ -#} -{% if types is not empty %} - <dl class="node-type-list"> - {% for type in types %} - <dt>{{ type.add_link }}</dt> - <dd>{{ type.description }}</dd> - {% endfor %} - </dl> -{% else %} - <p> - {% set create_content = path('node.type_add') %} - {% trans %} - You have not created any content types yet. Go to the <a href="{{ create_content }}">content type creation page</a> to add a new content type. - {% endtrans %} - </p> -{% endif %} diff --git a/templates/content-edit/node-edit-form.html.twig b/templates/content-edit/node-edit-form.html.twig deleted file mode 100644 index 9620913c9442ecd4dc3bca26b6af1f4f061f41dc..0000000000000000000000000000000000000000 --- a/templates/content-edit/node-edit-form.html.twig +++ /dev/null @@ -1,28 +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 seven_form_node_form_alter() - */ -#} -<div class="content clearfix row"> - <div class="col-md-6 layout-region layout-region-node-main"> - {{ form|without('advanced', 'actions') }} - </div> - <div class="col-md-6 layout-region-node-secondary"> - {{ form.advanced }} - </div> - <div class="col layout-region-node-footer"> - {{ form.actions }} - </div> -</div> diff --git a/templates/content-edit/text-format-wrapper.html.twig b/templates/content-edit/text-format-wrapper.html.twig deleted file mode 100644 index 08a88ca1ce1d95fba8fe44a30f3fdaca95210143..0000000000000000000000000000000000000000 --- a/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() - */ -#} -<div class="js-text-format-wrapper text-format-wrapper js-form-item form-item"> - {{ children }} - {% if description %} - {% - set classes = [ - aria_description ? 'description', - ] - %} - <div{{ attributes.addClass(classes) }}>{{ description }}</div> - {% endif %} -</div> diff --git a/templates/content/aggregator-item.html.twig b/templates/content/aggregator-item.html.twig deleted file mode 100644 index 20f6d7c33f900aee4a5db6efd34d319193b8d26a..0000000000000000000000000000000000000000 --- a/templates/content/aggregator-item.html.twig +++ /dev/null @@ -1,24 +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. - * - * @see template_preprocess_aggregator_item() - */ -#} -<article{{ attributes.addClass('aggregator-item') }}> - {{ title_prefix }} - <h3 class="feed-item-title"> - <a href="{{ url }}">{{ title }}</a> - </h3> - {{ title_suffix }} - {{ content }} -</article> diff --git a/templates/content/book-node-export-html.html.twig b/templates/content/book-node-export-html.html.twig deleted file mode 100644 index 94a4c24dc714d510299c202402d6e575b739a126..0000000000000000000000000000000000000000 --- a/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() - */ -#} -<article id="node-{{ node.id }}" class="section-{{ depth }}"> - <h1 class="book-heading">{{ title }}</h1> - {{ content }} - {{ children }} -</article> diff --git a/templates/content/comment.html.twig b/templates/content/comment.html.twig deleted file mode 100644 index 8e62ff1ffe927960734145c04aa1cf7811ef0f61..0000000000000000000000000000000000000000 --- a/templates/content/comment.html.twig +++ /dev/null @@ -1,118 +0,0 @@ -{# -/** - * @file - * Bartik's theme implementation 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. - * - title_attributes: Same as attributes, except applied to the main title - * tag that appears in the template. - * - content_attributes: List of classes for the styling of the comment content. - * - 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() - */ -#} -{% if threaded %} - {{ attach_library('classy/drupal.comment.threaded') }} -{% endif %} -{% - set classes = [ - 'comment', - 'js-comment', - status != 'published' ? 'comment--' ~ status, - comment.owner.anonymous ? 'by-anonymous', - author_id and author_id == commented_entity.getOwnerId() ? 'by-' ~ commented_entity.getEntityTypeId() ~ '-author', - 'clearfix', - ] -%} -<article role="article"{{ attributes.addClass(classes)|without('role') }}> - - <div class="comment__meta col-sm-3"> - {# - 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. - #} - <span class="hidden text-danger" data-comment-timestamp="{{ new_indicator_timestamp }}"></span> - {{ user_picture }} - <small class="comment__author">{{ author }}</small> - {# - Indicate the semantic relationship between parent and child comments - for accessibility. The list is difficult to navigate in a screen - reader without this information. - #} - {% if parent %} - <p class="sr-only">{{ parent }}</p> - {% endif %} - </div> - - <div{{ content_attributes.addClass(['comment__content', 'col-sm-9', 'card']) }}> - <div class="card-body"> - {% if title %} - {{ title_prefix }} - <h3{{ title_attributes.addClass('card-title') }}>{{ title }}</h3> - {{ title_suffix }} - {% endif %} - {{ content|without('links') }} - {% if content.links %} - <nav>{{ content.links }}</nav> - {% endif %} - </div> - <div class="card-body"> - <span class="comment__time">{{ created }}</span> - <span class="comment__permalink">{{ permalink }}</span> - </div> - </div> -</article> diff --git a/templates/content/links--node.html.twig b/templates/content/links--node.html.twig deleted file mode 100644 index 51b36073d08a00fc90160d9e3186c2d3f4fe1b33..0000000000000000000000000000000000000000 --- a/templates/content/links--node.html.twig +++ /dev/null @@ -1,62 +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 <span> - * tag if no 'href' is supplied. - * - link_key: The link CSS class. - * - 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 %} - {{ attach_library('bootstrap_barrio/links') }} - - <div class="node__links"> - {%- if heading -%} - {%- if heading.level -%} - <{{ heading.level }}{{ heading.attributes }}>{{ heading.text }}</{{ heading.level }}> - {%- else -%} - <h2{{ heading.attributes }}>{{ heading.text }}</h2> - {%- endif -%} - {%- endif -%} - <nav{{ attributes.addClass(['nav', 'links-inline']) }}> - {%- for key, item in links -%} - <span{{ item.attributes.addClass(key|clean_class, 'nav-link') }}> - {%- if item.link -%} - {{ item.link }} - {%- elseif item.text_attributes -%} - <span{{ item.text_attributes }}>{{ item.text }}</span> - {%- else -%} - {{ item.text }} - {%- endif -%} - </span> - {%- endfor -%} - </nav> - </div> -{% endif %} diff --git a/templates/content/mark.html.twig b/templates/content/mark.html.twig deleted file mode 100644 index c99ae2927309410ec789ce37f30741dbfd9ab6ed..0000000000000000000000000000000000000000 --- a/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') %} - <span class="text-danger">{{ 'New'|t }}</span> - {% elseif status is constant('MARK_UPDATED') %} - <span class="text-danger">{{ 'Updated'|t }}</span> - {% endif %} -{% endif %} diff --git a/templates/content/node.html.twig b/templates/content/node.html.twig deleted file mode 100644 index ebc8707651196e4456bf931a429c9af051e51cfc..0000000000000000000000000000000000000000 --- a/templates/content/node.html.twig +++ /dev/null @@ -1,101 +0,0 @@ -{# -/** - * @file - * Bootstrap Barrio's theme implementation to display a node. - * - * Available variables: - * - node: The node entity with limited access to object properties and methods. - Only "getter" methods (method names starting with "get", "has", or "is") - and a few common methods such as "id" and "label" are available. Calling - other methods (such as node.delete) will result in an exception. - * - 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() - */ -#} -{{ attach_library('bootstrap_barrio/node') }} - -{% - 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, - 'clearfix', - ] -%} -<article{{ attributes.addClass(classes) }}> - {% if label and not page %} - <header> - {{ title_prefix }} - {% if not page %} - <h2{{ title_attributes.addClass('node__title') }}> - <a href="{{ url }}" rel="bookmark">{{ label }}</a> - </h2> - {% endif %} - {{ title_suffix }} - {% if display_submitted %} - <div class="node__meta"> - {{ author_picture }} - {% block submitted %} - <em{{ author_attributes }}> - {% trans %}Submitted by {{ author_name }} on {{ date }}{% endtrans %} - </em> - {% endblock %} - {{ metadata }} - </div> - {% endif %} - </header> - {% endif %} - <div{{ content_attributes.addClass('node__content', 'clearfix') }}> - {{ content }} - </div> -</article> diff --git a/templates/content/page-title.html.twig b/templates/content/page-title.html.twig deleted file mode 100644 index 0d94062ad9bdd5937af891ed7de4f9393b29ac8e..0000000000000000000000000000000000000000 --- a/templates/content/page-title.html.twig +++ /dev/null @@ -1,21 +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. - * - * @see template_preprocess_page_title() - */ -#} -{{ title_prefix }} -{% if title %} - <h1{{ title_attributes.addClass('title') }}>{{ title }}</h1> -{% endif %} -{{ title_suffix }} diff --git a/templates/content/search-result.html.twig b/templates/content/search-result.html.twig deleted file mode 100644 index 7f0792d5df00a91e97db9b83974bad3501341f47..0000000000000000000000000000000000000000 --- a/templates/content/search-result.html.twig +++ /dev/null @@ -1,69 +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) %} - * <span class="info-comment"> - * {{ info_split.comment }} - * </span> - * {% endif %} - * @endcode - * - * To check for all available data within info_split, use the code below. - * @code - * <pre> - * {{ dump(info_split) }} - * </pre> - * @endcode - * - * @see template_preprocess_search_result() - */ -#} -{{ title_prefix }} -<h3{{ title_attributes }}> - <a href="{{ url }}">{{ title }}</a> -</h3> -{{ title_suffix }} -{% if snippet %} - <p{{ content_attributes }}>{{ snippet }}</p> -{% endif %} -{% if info %} - <p><em>{{ info }}</em></p> -{% endif %} diff --git a/templates/content/taxonomy-term.html.twig b/templates/content/taxonomy-term.html.twig deleted file mode 100644 index 7e0446e01e6c90bbdda9b893a5a22af7ef91b595..0000000000000000000000000000000000000000 --- a/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, - ] -%} -<div{{ attributes.setAttribute('id', 'taxonomy-term-' ~ term.id).addClass(classes) }}> - {{ title_prefix }} - {% if not page %} - <h2><a href="{{ url }}">{{ name }}</a></h2> - {% endif %} - {{ title_suffix }} - <div class="content"> - {{ content }} - </div> -</div> diff --git a/templates/dataset/aggregator-feed.html.twig b/templates/dataset/aggregator-feed.html.twig deleted file mode 100644 index 9153a523c9f166aaf3c8d2e2e31750f0ca686fca..0000000000000000000000000000000000000000 --- a/templates/dataset/aggregator-feed.html.twig +++ /dev/null @@ -1,29 +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. - * - * @see template_preprocess_aggregator_feed() - */ -#} -<div{{ attributes.addClass('aggregator-feed') }}> - - {{ title_prefix }} - {% if not full %} - <h2{{ title_attributes }}>{{ title }}</h2> - {% endif %} - {{ title_suffix }} - - {{ content }} - -</div> diff --git a/templates/dataset/forum-icon.html.twig b/templates/dataset/forum-icon.html.twig deleted file mode 100644 index d6be503bb2af344d3f149ce285f0980c0878fc28..0000000000000000000000000000000000000000 --- a/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, - ] -%} -<div{{ attributes.addClass(classes) }}> - {% if first_new -%} - <a id="new"></a> - {%- endif %} - <span class="visually-hidden">{{ icon_title }}</span> -</div> diff --git a/templates/dataset/forum-list.html.twig b/templates/dataset/forum-list.html.twig deleted file mode 100644 index ce610bb49b9f860ff4f7bfb4f3dc56ae5d23b543..0000000000000000000000000000000000000000 --- a/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() - */ -#} -<table id="forum-{{ forum_id }}"> - <thead> - <tr> - <th>{{ 'Forum'|t }}</th> - <th>{{ 'Topics'|t }}</th> - <th>{{ 'Posts'|t }}</th> - <th>{{ 'Last post'|t }}</th> - </tr> - </thead> - <tbody> - {% for child_id, forum in forums %} - <tr id="forum-list-{{ child_id }}" class="{{ forum.zebra }}"> - <td {% if forum.is_container == true -%} - colspan="4" class="container" - {%- else -%} - class="forum-list__forum" - {%- endif -%}> - {# - 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 %}<div class="indented">{% endfor %} - <div class="forum__icon forum-status-{{ forum.icon_class }}" title="{{ forum.icon_title }}"> - <span class="visually-hidden">{{ forum.icon_title }}</span> - </div> - <div class="forum__name"><a href="{{ forum.link }}">{{ forum.label }}</a></div> - {% if forum.description.value %} - <div class="forum__description">{{ forum.description.value }}</div> - {% endif %} - {% for i in 1..forum.depth if forum.depth > 0 %}</div>{% endfor %} - </td> - {% if forum.is_container == false %} - <td class="forum__topics"> - {{ forum.num_topics }} - {% if forum.new_topics == true %} - <br /> - <a href="{{ forum.new_url }}">{{ forum.new_text }}</a> - {% endif %} - </td> - <td class="forum__posts">{{ forum.num_posts }}</td> - <td class="forum__last-reply">{{ forum.last_reply }}</td> - {% endif %} - </tr> - {% endfor %} - </tbody> -</table> diff --git a/templates/dataset/forums.html.twig b/templates/dataset/forums.html.twig deleted file mode 100644 index e3f22129a9e83101ed42a9ab8ccfc1e335038cc5..0000000000000000000000000000000000000000 --- a/templates/dataset/forums.html.twig +++ /dev/null @@ -1,24 +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() - */ -#} -{{ attach_library('classy/forum') }} -{% if forums_defined %} - <div class="forum"> - {{ forums }} - {{ topics }} - {{ topics_pager }} - </div> -{% endif %} diff --git a/templates/dataset/item-list--search-results.html.twig b/templates/dataset/item-list--search-results.html.twig deleted file mode 100644 index 0bb8ad728a9de19f0c58c2a1c977aad854e45484..0000000000000000000000000000000000000000 --- a/templates/dataset/item-list--search-results.html.twig +++ /dev/null @@ -1,48 +0,0 @@ -{# -/** - * @file - * Default theme implementation 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() - * - * @ingroup themeable - */ -#} -{% - set classes = [ - 'list-group', - context.plugin ~ '-results', - ] -%} -{% set attributes = attributes.addClass(classes) %} - -{% if context.list_style %} - {%- set attributes = attributes.addClass('item-list__' ~ context.list_style) %} -{% endif %} -{% if items or empty %} - {%- if title is not empty -%} - <h3>{{ title }}</h3> - {%- endif -%} - {%- if items -%} - <{{ list_type }}{{ attributes }}> - {%- for item in items -%} - <li{{ item.attributes.addClass('list-group-item') }}>{{ item.value }}</li> - {%- endfor -%} - </{{ list_type }}> - {%- else -%} - {{- empty -}} - {%- endif -%} -{%- endif %} diff --git a/templates/dataset/item-list.html.twig b/templates/dataset/item-list.html.twig deleted file mode 100644 index ef546f2bd35c861fe391ec6b29118686f4676a33..0000000000000000000000000000000000000000 --- a/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 -%} - <div{{ wrapper_attributes.addClass('item-list') }}> - {%- if title is not empty -%} - <h3>{{ title }}</h3> - {%- endif -%} - {%- if items -%} - <{{ list_type }}{{ attributes.addClass('list-group') }}> - {%- for item in items -%} - <li{{ item.attributes.addClass('list-group-item') }}>{{ item.value }}</li> - {%- endfor -%} - </{{ list_type }}> - {%- else -%} - {{- empty -}} - {%- endif -%} - </div> -{%- endif %} diff --git a/templates/dataset/table.html.twig b/templates/dataset/table.html.twig deleted file mode 100644 index 53fc0a3162784ac16e08fb3d3d81007e3dbfc62f..0000000000000000000000000000000000000000 --- a/templates/dataset/table.html.twig +++ /dev/null @@ -1,124 +0,0 @@ -{# -/** - * @file - * Theme override to display a table. - * - * Available variables: - * - attributes: HTML attributes to apply to the <table> tag. - * - caption: A localized string for the <caption> tag. - * - colgroups: Column groups. Each group contains the following properties: - * - attributes: HTML attributes to apply to the <col> 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 <tr> 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. - * - thead_class: Class for the table header - * - * @see template_preprocess_table() - */ -#} - -{% - set table_classes = [ - 'table', - hover ? 'table-hover', - not no_striping ? 'table-striped' : 'table-bordered', - ] -%} -<div class="table-responsive"> -<table{{ attributes.addClass(table_classes) }}> - {% if caption %} - <caption>{{ caption }}</caption> - {% endif %} - - {% for colgroup in colgroups %} - {% if colgroup.cols %} - <colgroup{{ colgroup.attributes }}> - {% for col in colgroup.cols %} - <col{{ col.attributes }} /> - {% endfor %} - </colgroup> - {% else %} - <colgroup{{ colgroup.attributes }} /> - {% endif %} - {% endfor %} - - {% if header %} - <thead class='{{ thead_class }}'> - <tr> - {% for cell in header %} - {% - set cell_classes = [ - cell.active_table_sort ? 'active', - ] - %} - <{{ cell.tag }}{{ cell.attributes.addClass(cell_classes) }}> - {{- cell.content -}} - </{{ cell.tag }}> - {% endfor %} - </tr> - </thead> - {% endif %} - - {% if rows %} - <tbody> - {% for row in rows %} - {% - set row_classes = [ - not no_striping ? cycle(['odd', 'even'], loop.index0), - ] - %} - <tr{{ row.attributes.addClass(row_classes) }}> - {% for cell in row.cells %} - <{{ cell.tag }}{{ cell.attributes }}> - {{- cell.content -}} - </{{ cell.tag }}> - {% endfor %} - </tr> - {% endfor %} - </tbody> - {% elseif empty %} - <tbody> - <tr class="odd"> - <td colspan="{{ header_columns }}" class="empty message">{{ empty }}</td> - </tr> - </tbody> - {% endif %} - {% if footer %} - <tfoot> - {% for row in footer %} - <tr{{ row.attributes }}> - {% for cell in row.cells %} - <{{ cell.tag }}{{ cell.attributes }}> - {{- cell.content -}} - </{{ cell.tag }}> - {% endfor %} - </tr> - {% endfor %} - </tfoot> - {% endif %} -</table> -</div> \ No newline at end of file diff --git a/templates/ds/layout--ds-card-3stack.html.twig b/templates/ds/layout--ds-card-3stack.html.twig deleted file mode 100644 index 82732bb7a734a82ea23ec68318c7b928b7ae9780..0000000000000000000000000000000000000000 --- a/templates/ds/layout--ds-card-3stack.html.twig +++ /dev/null @@ -1,37 +0,0 @@ -{# -/** - * @file - * Display Suite 4 column template. - * - * Available variables: - * - outer_wrapper: outer wrapper element - * - first_wrapper: wrapper element around first region - * - second_wrapper: wrapper element around second region - * - third_wrapper: wrapper element around third region - * - attributes: layout attributes - * - first_attributes: attributes for first region - * - second_attributes: attributes for second region - * - third_attributes: attributes for third region - * - fourth_attributes: attributes for fourth region - * - first: content of first region - * - second: content of second region - * - third: content of third region - */ -#} -<{{ outer_wrapper }}{{ attributes.addClass('card', 'clearfix') }}> - - {{ title_suffix.contextual_links }} - - <{{ first_wrapper }}{{ first_attributes.addClass('card-block card-body') }}> - {{ first }} - </{{ first_wrapper }}> - - <{{ second_wrapper }}{{ second_attributes.addClass('card-img') }}> - {{ second }} - </{{ second_wrapper }}> - - <{{ third_wrapper }}{{ third_attributes.addClass('card-block card-body') }}> - {{ third }} - </{{ third_wrapper }}> - -</{{ outer_wrapper }}> diff --git a/templates/ds/layout--ds-card-basic.html.twig b/templates/ds/layout--ds-card-basic.html.twig deleted file mode 100644 index 6ee418378a505913f0719118288be3a1608b83af..0000000000000000000000000000000000000000 --- a/templates/ds/layout--ds-card-basic.html.twig +++ /dev/null @@ -1,18 +0,0 @@ -{# -/** - * @file - * Display Suite simple card. - * - * Available variables: - * - outer_wrapper: outer wrapper element - * - attributes: layout attributes - * - first: content of first region - */ -#} -<{{ outer_wrapper }}{{ attributes.addClass('card', 'clearfix', 'card-block', 'card-body') }}> - - {{ title_suffix.contextual_links }} - - {{ first }} - -</{{ outer_wrapper }}> diff --git a/templates/ds/layout--ds-card-header-footer.html.twig b/templates/ds/layout--ds-card-header-footer.html.twig deleted file mode 100644 index 5f736d3b71ee262e5530d46d0e3672d559f6deb4..0000000000000000000000000000000000000000 --- a/templates/ds/layout--ds-card-header-footer.html.twig +++ /dev/null @@ -1,36 +0,0 @@ -{# -/** - * @file - * Display Suite card header footer template. - * - * Available variables: - * - outer_wrapper: outer wrapper element - * - first_wrapper: wrapper element around first region - * - second_wrapper: wrapper element around second region - * - third_wrapper: wrapper element around third region - * - attributes: layout attributes - * - first_attributes: attributes for first region - * - second_attributes: attributes for second region - * - third_attributes: attributes for third region - * - first: content of first region - * - second: content of second region - * - third: content of third region - */ -#} -<{{ outer_wrapper }}{{ attributes.addClass('card', 'clearfix') }}> - - {{ title_suffix.contextual_links }} - - <{{ first_wrapper }}{{ first_attributes.addClass('card-header') }}> - {{ first }} - </{{ first_wrapper }}> - - <{{ second_wrapper }}{{ second_attributes.addClass('card-block card-body') }}> - {{ second }} - </{{ second_wrapper }}> - - <{{ third_wrapper }}{{ third_attributes.addClass('card-footer') }}> - {{ third }} - </{{ third_wrapper }}> - -</{{ outer_wrapper }}> diff --git a/templates/ds/layout--ds-card-image-overlay.html.twig b/templates/ds/layout--ds-card-image-overlay.html.twig deleted file mode 100644 index 01f98c9b36a8e23f7606224dcad9aa372871a165..0000000000000000000000000000000000000000 --- a/templates/ds/layout--ds-card-image-overlay.html.twig +++ /dev/null @@ -1,29 +0,0 @@ -{# -/** - * @file - * Display Suite card image top. - * - * Available variables: - * - outer_wrapper: outer wrapper element - * - first_wrapper: wrapper element around first region - * - second_wrapper: wrapper element around second region - * - attributes: layout attributes - * - first_attributes: attributes for first region - * - second_attributes: attributes for second region - * - first: content of first region - * - second: content of second region - */ -#} -<{{ outer_wrapper }}{{ attributes.addClass('card') }}> - - {{ title_suffix.contextual_links }} - - <{{ first_wrapper }}{{ first_attributes.addClass('card-img') }}> - {{ first }} - </{{ first_wrapper }}> - - <{{ second_wrapper }}{{ second_attributes.addClass('card-img-overlay') }}> - {{ second }} - </{{ second_wrapper }}> - -</{{ outer_wrapper }}> diff --git a/templates/ds/layout--ds-card-top-image.html.twig b/templates/ds/layout--ds-card-top-image.html.twig deleted file mode 100644 index 4ce714960dc278e8ea221d49ede9222d89109fc0..0000000000000000000000000000000000000000 --- a/templates/ds/layout--ds-card-top-image.html.twig +++ /dev/null @@ -1,29 +0,0 @@ -{# -/** - * @file - * Display Suite card image top. - * - * Available variables: - * - outer_wrapper: outer wrapper element - * - first_wrapper: wrapper element around first region - * - second_wrapper: wrapper element around second region - * - attributes: layout attributes - * - first_attributes: attributes for first region - * - second_attributes: attributes for second region - * - first: content of first region - * - second: content of second region - */ -#} -<{{ outer_wrapper }}{{ attributes.addClass('card', 'clearfix') }}> - - {{ title_suffix.contextual_links }} - - <{{ first_wrapper }}{{ first_attributes.addClass('card-img-top') }}> - {{ first }} - </{{ first_wrapper }}> - - <{{ second_wrapper }}{{ second_attributes.addClass('card-body') }}> - {{ second }} - </{{ second_wrapper }}> - -</{{ outer_wrapper }}> diff --git a/templates/ds/layout--ds-media.html.twig b/templates/ds/layout--ds-media.html.twig deleted file mode 100644 index 3e330fa13a5b234feee4336749b712d5597963e4..0000000000000000000000000000000000000000 --- a/templates/ds/layout--ds-media.html.twig +++ /dev/null @@ -1,27 +0,0 @@ -{# -/** - * @file - * Display Suite media. - * - * Available variables: - * - outer_wrapper: outer wrapper element - * - first_wrapper: wrapper element around first region - * - second_wrapper: wrapper element around second region - * - attributes: layout attributes - * - first_attributes: attributes for first region - * - second_attributes: attributes for second region - * - first: content of first region - * - second: content of second region - */ -#} -<{{ outer_wrapper }}{{ attributes.addClass('media', 'clearfix') }}> - - {{ title_suffix.contextual_links }} - - {{ first }} - - <{{ second_wrapper }}{{ second_attributes.addClass('media-body') }}> - {{ second }} - </{{ second_wrapper }}> - -</{{ outer_wrapper }}> diff --git a/templates/field/field--comment.html.twig b/templates/field/field--comment.html.twig deleted file mode 100644 index f7973108f55f5bef0bb799e20617342b13bc9d69..0000000000000000000000000000000000000000 --- a/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', - ] -%} -<section{{ attributes.addClass(classes) }}> - {% if comments and not label_hidden %} - {{ title_prefix }} - <h2{{ title_attributes.addClass(title_classes) }}>{{ label }}</h2> - {{ title_suffix }} - {% endif %} - - {{ comments }} - - {% if comment_form %} - <h2 class='title comment-form__title'>{{ 'Add new comment'|t }}</h2> - {{ comment_form }} - {% endif %} - -</section> diff --git a/templates/field/field--node--created.html.twig b/templates/field/field--node--created.html.twig deleted file mode 100644 index 72d5d6737d26898d95e1fd4a76875d107bee9e5d..0000000000000000000000000000000000000000 --- a/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, - ] -%} -<span{{ attributes.addClass(classes) }}> - {%- for item in items -%} - {{ item.content }} - {%- endfor -%} -</span> diff --git a/templates/field/field--node--field-tags.html.twig b/templates/field/field--node--field-tags.html.twig deleted file mode 100644 index dab40947ef0cb0594cd7bf3736bf7691935f2f27..0000000000000000000000000000000000000000 --- a/templates/field/field--node--field-tags.html.twig +++ /dev/null @@ -1,48 +0,0 @@ -{# -/** - * @file - * Bartik theme override for taxonomy term 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 label. - * - label: The label for the field. - * - content_attributes: HTML attributes for the content. - * - 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() - * @see bartik_preprocess_field() - */ -#} -{% - set classes = [ - 'field', - 'field--name-' ~ field_name|clean_class, - 'field--type-' ~ field_type|clean_class, - 'field--label-' ~ label_display, - 'clearfix', - ] -%} -{% - set title_classes = [ - 'field__label', - label_display == 'inline' ? 'inline', - ] -%} -<div{{ attributes.addClass(classes) }}> - {% if not label_hidden %} - <h3{{ title_attributes.addClass(title_classes) }}>{{ label }}</h3> - {% endif %} - <ul class='links field__items'> - {% for item in items %} - <li{{ item.attributes }}>{{ item.content }}</li> - {% endfor %} - </ul> -</div> diff --git a/templates/field/field--node--title.html.twig b/templates/field/field--node--title.html.twig deleted file mode 100644 index 33b105f50b3eb1f767414d69cb22a4ec33418f93..0000000000000000000000000000000000000000 --- a/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, - ] -%} -<span{{ attributes.addClass(classes) }}> - {%- for item in items -%} - {{ item.content }} - {%- endfor -%} -</span> diff --git a/templates/field/field--node--uid.html.twig b/templates/field/field--node--uid.html.twig deleted file mode 100644 index 9afc591b7194a73395075161ee016839d8b516f9..0000000000000000000000000000000000000000 --- a/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, - ] -%} -<span{{ attributes.addClass(classes) }}> - {%- for item in items -%} - {{ item.content }} - {%- endfor -%} -</span> diff --git a/templates/field/field--text-long.html.twig b/templates/field/field--text-long.html.twig deleted file mode 100644 index 07ce721d2d70e767cb74b466243e590f97dfe5ef..0000000000000000000000000000000000000000 --- a/templates/field/field--text-long.html.twig +++ /dev/null @@ -1 +0,0 @@ -{% extends "field--text.html.twig" %} diff --git a/templates/field/field--text-with-summary.html.twig b/templates/field/field--text-with-summary.html.twig deleted file mode 100644 index 07ce721d2d70e767cb74b466243e590f97dfe5ef..0000000000000000000000000000000000000000 --- a/templates/field/field--text-with-summary.html.twig +++ /dev/null @@ -1 +0,0 @@ -{% extends "field--text.html.twig" %} diff --git a/templates/field/field--text.html.twig b/templates/field/field--text.html.twig deleted file mode 100644 index 5d1690c3ec98fe51e2ae2d7c4f5cbb2b72102b3c..0000000000000000000000000000000000000000 --- a/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/templates/field/field.html.twig b/templates/field/field.html.twig deleted file mode 100644 index 11751a9a1852079052f3f6b66a3fccbcb6416b04..0000000000000000000000000000000000000000 --- a/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 %} - <div{{ attributes.addClass(classes, 'field__items') }}> - {% for item in items %} - <div{{ item.attributes.addClass('field__item') }}>{{ item.content }}</div> - {% endfor %} - </div> - {% else %} - {% for item in items %} - <div{{ attributes.addClass(classes, 'field__item') }}>{{ item.content }}</div> - {% endfor %} - {% endif %} -{% else %} - <div{{ attributes.addClass(classes) }}> - <div{{ title_attributes.addClass(title_classes) }}>{{ label }}</div> - {% if multiple %} - <div class='field__items'> - {% endif %} - {% for item in items %} - <div{{ item.attributes.addClass('field__item') }}>{{ item.content }}</div> - {% endfor %} - {% if multiple %} - </div> - {% endif %} - </div> -{% endif %} diff --git a/templates/field/file-link.html.twig b/templates/field/file-link.html.twig deleted file mode 100644 index ca9590f1ee1a961dfdffc5b720f9dc47b2bb9f9d..0000000000000000000000000000000000000000 --- a/templates/field/file-link.html.twig +++ /dev/null @@ -1,15 +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() - */ -#} -{{ attach_library('bootstrap_barrio/file') }} -<span{{ attributes }}>{{ icon }} {{ link }}</span> diff --git a/templates/field/image-formatter.html.twig b/templates/field/image-formatter.html.twig deleted file mode 100644 index 04a98a355976be5b693d526d750db0ec0c3faa3c..0000000000000000000000000000000000000000 --- a/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 %} - <a href="{{ url }}">{{ image }}</a> -{% else %} - {{ image }} -{% endif %} diff --git a/templates/field/image-style.html.twig b/templates/field/image-style.html.twig deleted file mode 100644 index 039089a3ecb5f1f2bf233fc9261c97d0a9c48093..0000000000000000000000000000000000000000 --- a/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/templates/field/image.html.twig b/templates/field/image.html.twig deleted file mode 100644 index 31f782bb60a899f1682037f4c3f2b2707c543874..0000000000000000000000000000000000000000 --- a/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, -] -%} -<img{{ attributes.addClass(classes) }} /> diff --git a/templates/field/link-formatter-link-separate.html.twig b/templates/field/link-formatter-link-separate.html.twig deleted file mode 100644 index cb94264c66a9b930d2218ac1727024aced915d8d..0000000000000000000000000000000000000000 --- a/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 %} - <div class="link-item"> - {% if title %} - <div class="link-title">{{ title }}</div> - {% endif %} - <div class="link-url">{{ link }}</div> - </div> -{% endspaceless %} diff --git a/templates/field/time.html.twig b/templates/field/time.html.twig deleted file mode 100644 index a9e363e4326e10f1e5d8d699a247d77fc6cacec9..0000000000000000000000000000000000000000 --- a/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 <time> element. - * Defaults to a human-readable representation of the timestamp value or the - * datetime attribute value using format_date(). - * - attributes: (optional) HTML attributes to apply to the <time> element. - * A datetime attribute in 'attributes' overrides the 'timestamp'. To - * create a valid datetime attribute value from a UNIX timestamp, use - * format_date() with one of the predefined 'html_*' formats. - * - * @see template_preprocess_time() - * @see http://www.w3.org/TR/html5-author/the-time-element.html#attr-time-datetime - */ -#} -<time{{ attributes.addClass('datetime') }}>{{ text }}</time> diff --git a/templates/form/checkboxes.html.twig b/templates/form/checkboxes.html.twig deleted file mode 100644 index a85d32510f11325d9f392cb6fd4462c91a11358d..0000000000000000000000000000000000000000 --- a/templates/form/checkboxes.html.twig +++ /dev/null @@ -1,15 +0,0 @@ -{# -/** - * @file - * Theme override for a 'checkboxes' #type form element. - * - * Available variables - * - attributes: A list of HTML attributes for the wrapper element. - * - children: The rendered checkboxes. - * - * @see template_preprocess_checkboxes() - */ - @todo: remove this file once https://www.drupal.org/node/1819284 is resolved. - This is identical to core/modules/system/templates/container.html.twig -#} -<div{{ attributes.addClass('checkbox') }}>{{ children }}</div> diff --git a/templates/form/confirm-form.html.twig b/templates/form/confirm-form.html.twig deleted file mode 100644 index 725f7f4df2cd2eab53fdef412d1719d96595cc90..0000000000000000000000000000000000000000 --- a/templates/form/confirm-form.html.twig +++ /dev/null @@ -1,13 +0,0 @@ -{# -/** - * @file - * Theme override for confirm form. - * - * By default 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/templates/form/container.html.twig b/templates/form/container.html.twig deleted file mode 100644 index f2a8f7666c51866cb87bf5baa5e30cc46a16e36a..0000000000000000000000000000000000000000 --- a/templates/form/container.html.twig +++ /dev/null @@ -1,26 +0,0 @@ -{# -/** - * @file - * Theme override of a container used to wrap child elements. - * - * Used for grouped form items. Can also be used as a theme wrapper for any - * renderable element, to surround it with a <div> and HTML attributes. - * See the @link forms_api_reference.html Form API reference @endlink for more - * information on the #theme_wrappers render array property. - * - * Available variables: - * - attributes: HTML attributes for the containing element. - * - children: The rendered child elements of the container. - * - has_parent: A flag to indicate that the container has one or more parent - containers. - * - * @see template_preprocess_container() - */ -#} -{% - set classes = [ - has_parent ? 'js-form-wrapper', - has_parent ? 'form-group', - ] -%} -<div{{ attributes.addClass(classes) }}>{{ children }}</div> diff --git a/templates/form/datetime-form.html.twig b/templates/form/datetime-form.html.twig deleted file mode 100644 index 0656af011f499be0ee96184a8b6056c89df86c1b..0000000000000000000000000000000000000000 --- a/templates/form/datetime-form.html.twig +++ /dev/null @@ -1,15 +0,0 @@ -{# -/** - * @file - * Theme override of a datetime form element. - * - * Available variables: - * - attributes: HTML attributes for the datetime form element. - * - content: The datelist form element to be output. - * - * @see template_preprocess_datetime_form() - */ -#} -<div{{ attributes.addClass('form-inline') }}> - {{ content }} -</div> diff --git a/templates/form/datetime-wrapper.html.twig b/templates/form/datetime-wrapper.html.twig deleted file mode 100644 index 4507fb8331c7c3d680022417720cc2b2dbd084eb..0000000000000000000000000000000000000000 --- a/templates/form/datetime-wrapper.html.twig +++ /dev/null @@ -1,34 +0,0 @@ -{# -/** - * @file - * Theme override of a datetime form wrapper. - * - * Available variables: - * - content: The form element to be output, usually a datelist, or datetime. - * - title: The title of the form element. - * - title_attributes: HTML attributes for the title wrapper. - * - description: Description text for the form element. - * - required: An indicator for whether the associated form element is required. - * - * @see template_preprocess_datetime_wrapper() - */ -#} -{% - set title_classes = [ - 'label', - required ? 'js-form-required', - required ? 'form-required', - ] -%} -{% if title %} - <label{{ title_attributes.addClass(title_classes) }}>{{ title }}</label> -{% endif %} -{{ content }} -{% if errors %} - <div class="alert alert-danger" role="alert"> - <strong>{{ errors }}</strong> - </div> -{% endif %} -{% if description %} - <small class="description text-muted">{{ description }}</small> -{% endif %} diff --git a/templates/form/details.html.twig b/templates/form/details.html.twig deleted file mode 100644 index 4eb19a8a0b4e41893fb65adc053e6dff89bdbd1b..0000000000000000000000000000000000000000 --- a/templates/form/details.html.twig +++ /dev/null @@ -1,37 +0,0 @@ -{# -/** - * @file - * Theme override for a details element. - * - * Available variables - * - attributes: A list of HTML attributes for the details element. - * - errors: (optional) Any errors for this details element, may not be set. - * - title: (optional) The title of the element, may not be set. - * - description: (optional) The description of the element, may not be set. - * - children: (optional) The children of the element, may not be set. - * - value: (optional) The value of the element, may not be set. - * - * @see template_preprocess_details() - */ -#} -<details{{ attributes }}> - {%- if title -%} - <summary{{ summary_attributes }}>{{ title }}</summary> - {%- endif -%} - <div class="details-wrapper"> - {% if errors %} - <div class="alert alert-danger" role="alert"> - <strong>{{ errors }}</strong> - </div> - {% endif %} - {%- if description -%} - <small class="details-description text-muted">{{ description }}</small> - {%- endif -%} - {%- if children -%} - {{ children }} - {%- endif -%} - {%- if value -%} - {{ value }} - {%- endif -%} - </div> -</details> diff --git a/templates/form/dropbutton-wrapper.html.twig b/templates/form/dropbutton-wrapper.html.twig deleted file mode 100644 index e72176da3ab77816422eaf6c728fb7d4c5de4002..0000000000000000000000000000000000000000 --- a/templates/form/dropbutton-wrapper.html.twig +++ /dev/null @@ -1,23 +0,0 @@ -{# -/** - * @file - * Theme override for a dropbutton wrapper. - * - * Available variables: - * - children: Contains the child elements of the dropbutton menu. - * - * @see template_preprocess() - * @see template_preprocess_dropbutton_wrapper() - */ -#} -{{ attach_library('bootstrap_barrio/dropbutton') }} - -{% if children %} - {% spaceless %} - <div class="dropbutton-wrapper"> - <div class="dropbutton-widget"> - {{ children }} - </div> - </div> - {% endspaceless %} -{% endif %} diff --git a/templates/form/field-multiple-value-form.html.twig b/templates/form/field-multiple-value-form.html.twig deleted file mode 100644 index c427b6de8a487f9fe5f4faa95a36032380330fe9..0000000000000000000000000000000000000000 --- a/templates/form/field-multiple-value-form.html.twig +++ /dev/null @@ -1,36 +0,0 @@ -{# -/** - * @file - * Theme override for an individual form element. - * - * Available variables for all fields: - * - multiple: Whether there are multiple instances of the field. - * - * Available variables for single cardinality fields: - * - elements: Form elements to be rendered. - * - * Available variables when there are multiple fields. - * - table: Table of field items. - * - description: The description element containing the following properties: - * - content: The description content of the form element. - * - attributes: HTML attributes to apply to the description container. - * - button: "Add another item" button. - * - * @see template_preprocess_field_multiple_value_form() - */ -#} -{% if multiple %} - <div class="js-form-item form-item"> - {{ table }} - {% if description.content %} - <small{{ description.attributes.addClass('description', 'text-muted') }} >{{ description.content }}</small> - {% endif %} - {% if button %} - <div class="clearfix">{{ button }}</div> - {% endif %} - </div> -{% else %} - {% for element in elements %} - {{ element }} - {% endfor %} -{% endif %} diff --git a/templates/form/fieldset.html.twig b/templates/form/fieldset.html.twig deleted file mode 100644 index 2adc0e3f4ce7364a929024b03f540ad28a146c13..0000000000000000000000000000000000000000 --- a/templates/form/fieldset.html.twig +++ /dev/null @@ -1,61 +0,0 @@ -{# -/** - * @file - * Theme override for a fieldset element and its children. - * - * Available variables: - * - attributes: HTML attributes for the fieldset element. - * - errors: (optional) Any errors for this fieldset element, may not be set. - * - required: Boolean indicating whether the fieldeset element is required. - * - legend: The legend element containing the following properties: - * - title: Title of the fieldset, intended for use as the text of the legend. - * - attributes: HTML attributes to apply to the legend. - * - description: The description element containing the following properties: - * - content: The description content of the fieldset. - * - attributes: HTML attributes to apply to the description container. - * - children: The rendered child elements of the fieldset. - * - prefix: The content to add before the fieldset children. - * - suffix: The content to add after the fieldset children. - * - * @see template_preprocess_fieldset() - */ -#} -{% - set classes = [ - 'js-form-item', - 'form-item', - 'js-form-wrapper', - 'form-group', - errors ? 'has-error', - ] -%} -<fieldset{{ attributes.addClass(classes) }}> - {% - set legend_span_classes = [ - 'fieldset-legend', - required ? 'js-form-required', - required ? 'form-required', - ] - %} - {# Always wrap fieldset legends in a SPAN for CSS positioning. #} - <legend{{ legend.attributes }}> - <span{{ legend_span.attributes.addClass(legend_span_classes) }}>{{ legend.title }}</span> - </legend> - <div class="fieldset-wrapper"> - {% if errors %} - <div class="alert alert-danger" role="alert"> - <strong>{{ errors }}</strong> - </div> - {% endif %} - {% if prefix %} - <span class="field-prefix">{{ prefix }}</span> - {% endif %} - {{ children }} - {% if suffix %} - <span class="field-suffix">{{ suffix }}</span> - {% endif %} - {% if description.content %} - <small{{ description.attributes.addClass('description', 'text-muted') }}>{{ description.content }}</small> - {% endif %} - </div> -</fieldset> diff --git a/templates/form/file-managed-file.html.twig b/templates/form/file-managed-file.html.twig deleted file mode 100644 index b0b41629d1295838335f2fab0abd0196e3e444d2..0000000000000000000000000000000000000000 --- a/templates/form/file-managed-file.html.twig +++ /dev/null @@ -1,24 +0,0 @@ -{# -/** - * @file - * Default theme implementation 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() - * - * @ingroup themeable - */ -#} -{% - set classes = [ - 'js-form-managed-file', - 'form-managed-file', - customtype == 'custom' ? 'custom-file', - ] -%} -<div{{ attributes.addClass(classes) }}> - {{ element }} -</div> diff --git a/templates/form/form-element-label.html.twig b/templates/form/form-element-label.html.twig deleted file mode 100644 index 3e305b91c49176f656e16cb23282129ff01ff50b..0000000000000000000000000000000000000000 --- a/templates/form/form-element-label.html.twig +++ /dev/null @@ -1,25 +0,0 @@ -{# -/** - * @file - * Theme override for a form element label. - * - * Available variables: - * - title: The label's text. - * - title_display: Elements title_display setting. - * - required: An indicator for whether the associated form element is required. - * - attributes: A list of HTML attributes for the label. - * - * @see template_preprocess_form_element_label() - */ -#} -{% - set classes = [ - title_display == 'after' ? 'option', - title_display == 'invisible' ? 'sr-only', - required ? 'js-form-required', - required ? 'form-required', - ] -%} -{% if title is not empty or required -%} - <label{{ attributes.addClass(classes) }}>{{ title }}</label> -{%- endif %} diff --git a/templates/form/form-element.html.twig b/templates/form/form-element.html.twig deleted file mode 100644 index ea61c7881339a03452b78aa20a0eb6d98f9f7301..0000000000000000000000000000000000000000 --- a/templates/form/form-element.html.twig +++ /dev/null @@ -1,172 +0,0 @@ -{# -/** - * @file - * Theme override for a form element. - * - * Available variables: - * - attributes: HTML attributes for the containing element. - * - errors: (optional) Any errors for this form element, may not be set. - * - prefix: (optional) The form element prefix, may not be set. - * - suffix: (optional) The form element suffix, may not be set. - * - required: The required marker, or empty if the associated form element is - * not required. - * - type: The type of the element. - * - name: The name of the element. - * - label: A rendered label element. - * - label_display: Label display setting. It can have these values: - * - before: The label is output before the element. This is the default. - * The label includes the #title and the required marker, if #required. - * - after: The label is output after the element. For example, this is used - * for radio and checkbox #type elements. If the #title is empty but the - * field is #required, the label will contain only the required marker. - * - invisible: Labels are critical for screen readers to enable them to - * properly navigate through forms but can be visually distracting. This - * property hides the label for everyone except screen readers. - * - attribute: Set the title attribute on the element to create a tooltip but - * output no label element. This is supported only for checkboxes and radios - * in \Drupal\Core\Render\Element\CompositeFormElementTrait::preRenderCompositeFormElement(). - * It is used where a visual label is not needed, such as a table of - * checkboxes where the row and column provide the context. The tooltip will - * include the title and required marker. - * - description: (optional) A list of description properties containing: - * - content: A description of the form element, may not be set. - * - attributes: (optional) A list of HTML attributes to apply to the - * description content wrapper. Will only be set when description is set. - * - description_display: Description display setting. It can have these values: - * - before: The description is output before the element. - * - after: The description is output after the element. This is the default - * value. - * - invisible: The description is output after the element, hidden visually - * but available to screen readers. - * - disabled: True if the element is disabled. - * - title_display: Title display setting. - * - * @see template_preprocess_form_element() - */ -#} - -{% if type == 'checkbox' %} - {% if customtype == 'custom' %} - {% set wrapperclass = "custom-control custom-checkbox" %} - {% set labelclass = "custom-control-label" %} - {% set inputclass = "custom-control-input" %} - {% elseif customtype == 'switch' %} - {% set wrapperclass = "custom-control custom-switch" %} - {% set labelclass = "custom-control-label" %} - {% set inputclass = "custom-control-input" %} - {% else %} - {% set wrapperclass = "form-check" %} - {% set labelclass = "form-check-label" %} - {% set inputclass = "form-check-input" %} - {% endif %} -{% endif %} - -{% if type == 'radio' %} - {% if customtype == 'custom' %} - {% set wrapperclass = "custom-control custom-radio" %} - {% set labelclass = "custom-control-label" %} - {% set inputclass = "custom-control-input" %} - {% else %} - {% set wrapperclass = "form-check" %} - {% set labelclass = "form-check-label" %} - {% set inputclass = "form-check-input" %} - {% endif %} -{% endif %} - -{% - set classes = [ - 'js-form-item', - 'js-form-type-' ~ type|clean_class, - type in ['checkbox', 'radio'] ? type|clean_class : 'form-type-' ~ type|clean_class, - type in ['checkbox', 'radio'] ? wrapperclass, - 'js-form-item-' ~ name|clean_class, - 'form-item-' ~ name|clean_class, - title_display not in ['after', 'before'] ? 'form-no-label', - disabled == 'disabled' ? 'disabled', - errors ? 'has-error', - ] -%} -{% - set description_classes = [ - 'description', - 'text-muted', - description_display == 'invisible' ? 'sr-only', - ] -%} -{% if type in ['checkbox', 'radio'] %} - <div{{ attributes.addClass(classes) }}> - {% if prefix is not empty %} - <span class="field-prefix">{{ prefix }}</span> - {% endif %} - {% if description_display == 'before' and description.content %} - <div{{ description.attributes }}> - {{ description.content }} - </div> - {% endif %} - {% if label_display == 'before' %} - <label {{ label_attributes.addClass(labelclass).setAttribute('for', input_attributes.id) }}> - {{ input_title | raw }} - </label> - {% endif %} - <input{{ input_attributes.addClass(inputclass) }}> - {% if label_display == 'after' %} - <label {{ label_attributes.addClass(labelclass).setAttribute('for', input_attributes.id) }}> - {{ input_title | raw }} - </label> - {% endif %} - {% if suffix is not empty %} - <span class="field-suffix">{{ suffix }}</span> - {% endif %} - {% if errors %} - <div class="invalid-feedback"> - {{ errors }} - </div> - {% endif %} - {% if description_display in ['after', 'invisible'] and description.content %} - <small{{ description.attributes.addClass(description_classes) }}> - {{ description.content }} - </small> - {% endif %} - </div> -{% else %} - <fieldset{{ attributes.addClass(classes, 'form-group') }}> - {% if label_display in ['before', 'invisible'] %} - {{ label }} - {% endif %} - {% if (prefix is not empty) or (suffix is not empty) %} - <div class="input-group"> - {% endif %} - {% if prefix is not empty %} - <div class="input-group-prepend"> - <span class="field-prefix input-group-text">{{ prefix }}</span> - </div> - {% endif %} - {% if description_display == 'before' and description.content %} - <div{{ description.attributes }}> - {{ description.content }} - </div> - {% endif %} - {{ children }} - {% if suffix is not empty %} - <div class="input-group-append"> - <span class="field-suffix input-group-text">{{ suffix }}</span> - </div> - {% endif %} - {% if (prefix is not empty) or (suffix is not empty) %} - </div> - {% endif %} - {% if label_display == 'after' %} - {{ label }} - {% endif %} - {% if errors %} - <div class="invalid-feedback"> - {{ errors }} - </div> - {% endif %} - {% if description_display in ['after', 'invisible'] and description.content %} - <small{{ description.attributes.addClass(description_classes) }}> - {{ description.content }} - </small> - {% endif %} - </fieldset> -{% endif %} diff --git a/templates/form/form.html.twig b/templates/form/form.html.twig deleted file mode 100644 index 246f890bfec97a208e60493747da6f540d62f0a6..0000000000000000000000000000000000000000 --- a/templates/form/form.html.twig +++ /dev/null @@ -1,16 +0,0 @@ -{# -/** - * @file - * Theme override for a 'form' element. - * - * Available variables - * - attributes: A list of HTML attributes for the wrapper element. - * - children: The child elements of the form. - * - * @see template_preprocess_form() - */ -#} -{{ attach_library('bootstrap_barrio/form') }} -<form{{ attributes }}> - {{ children }} -</form> diff --git a/templates/form/input--submit-button.html.twig b/templates/form/input--submit-button.html.twig deleted file mode 100644 index 23a14bfcdd075e4afc6574d07fd55fbff536ef02..0000000000000000000000000000000000000000 --- a/templates/form/input--submit-button.html.twig +++ /dev/null @@ -1,13 +0,0 @@ -{# -/** - * @file - * Theme override for an 'input' #type form element. - * - * Available variables: - * - attributes: A list of HTML attributes for the input element. - * - children: Optional additional rendered elements. - * - * @see template_preprocess_input() - */ -#} -<button{{ attributes }}>{{ safe_value_label | raw }}</button>{{ children }} diff --git a/templates/form/input.html.twig b/templates/form/input.html.twig deleted file mode 100644 index 90adf2ed38a4d27b9b8a6b2c69f81e809a2b76d0..0000000000000000000000000000000000000000 --- a/templates/form/input.html.twig +++ /dev/null @@ -1,13 +0,0 @@ -{# -/** - * @file - * Theme override for an 'input' #type form element. - * - * Available variables: - * - attributes: A list of HTML attributes for the input element. - * - children: Optional additional rendered elements. - * - * @see template_preprocess_input() - */ -#} -<input{{ attributes.addClass("form-control") }} />{{ children }} diff --git a/templates/form/radios.html.twig b/templates/form/radios.html.twig deleted file mode 100644 index 8f62d660860d401a2ae60521620f947d5968c78c..0000000000000000000000000000000000000000 --- a/templates/form/radios.html.twig +++ /dev/null @@ -1,13 +0,0 @@ -{# -/** - * @file - * Theme override for a 'radios' #type form element. - * - * Available variables - * - attributes: A list of HTML attributes for the wrapper element. - * - children: The rendered radios. - * - * @see template_preprocess_radios() - */ -#} -<div{{ attributes.addClass('radio') }}>{{ children }}</div> diff --git a/templates/form/select.html.twig b/templates/form/select.html.twig deleted file mode 100644 index 1a09c9528dcbc00dd68ec43e0bc3a99fe4176458..0000000000000000000000000000000000000000 --- a/templates/form/select.html.twig +++ /dev/null @@ -1,34 +0,0 @@ -{# -/** - * @file - * Theme override for a select element. - * - * Available variables: - * - attributes: HTML attributes for the select tag. - * - options: The option element children. - * - * @see template_preprocess_select() - */ -#} -{% - set classes = [ - customtype == 'standard' ? 'form-control', - customtype == 'custom' ? 'custom-select', - ] -%} - -{% spaceless %} - <select{{ attributes.addClass(classes) }}> - {% for option in options %} - {% if option.type == 'optgroup' %} - <optgroup label="{{ option.label }}"> - {% for sub_option in option.options %} - <option value="{{ sub_option.value }}"{{ sub_option.selected ? ' selected="selected"' }}>{{ sub_option.label }}</option> - {% endfor %} - </optgroup> - {% elseif option.type == 'option' %} - <option value="{{ option.value }}"{{ option.selected ? ' selected="selected"' }}>{{ option.label }}</option> - {% endif %} - {% endfor %} - </select> -{% endspaceless %} diff --git a/templates/form/textarea.html.twig b/templates/form/textarea.html.twig deleted file mode 100644 index c4be8d7eb77fbab7ffa8c7d7d3c8c585ec4d3b8c..0000000000000000000000000000000000000000 --- a/templates/form/textarea.html.twig +++ /dev/null @@ -1,26 +0,0 @@ -{# -/** - * @file - * Theme override for a 'textarea' #type form element. - * - * Available variables - * - wrapper_attributes: A list of HTML attributes for the wrapper element. - * - attributes: A list of HTML attributes for the textarea element. - * - resizable: An indicator for whether the textarea is resizable. - * - required: An indicator for whether the textarea is required. - * - value: The textarea content. - * - * @see template_preprocess_textarea() - */ -#} -{% - set classes = [ - 'form-textarea', - 'form-control', - resizable ? 'resize-' ~ resizable, - required ? 'required', - ] -%} -<div{{ wrapper_attributes.addClass('form-textarea-wrapper') }}> - <textarea{{ attributes.addClass(classes) }}>{{ value }}</textarea> -</div> diff --git a/templates/layout/book-export-html.html.twig b/templates/layout/book-export-html.html.twig deleted file mode 100644 index ea33648d3854a9e356146bd0c4dedaa92b875ee9..0000000000000000000000000000000000000000 --- a/templates/layout/book-export-html.html.twig +++ /dev/null @@ -1,45 +0,0 @@ -{# -/** - * @file - * Theme override for printed version of book outline. - * - * Available variables: - * - title: Top level node title. - * - head: Header tags. - * - language: Language object. - * - language_rtl: A flag indicating whether the current display language is a - * right to left language. - * - base_url: URL to the home page. - * - contents: Nodes within the current outline rendered through - * book-node-export-html.html.twig. - * - * @see template_preprocess_book_export_html() - */ -#} -<!DOCTYPE html> -<html{{ html_attributes }}> - <head> - <title>{{ title }}</title> - {{ page.head }} - <base href="{{ base_url }}" /> - <link type="text/css" rel="stylesheet" href="misc/print.css" /> - </head> - <body> - {# - The given node is embedded to its absolute depth in a top level section. - For example, a child node with depth 2 in the hierarchy is contained in - (otherwise empty) div elements corresponding to depth 0 and depth 1. This - is intended to support WYSIWYG output - e.g., level 3 sections always look - like level 3 sections, no matter their depth relative to the node selected - to be exported as printer-friendly HTML. - #} - - {% for i in 1..depth-1 if depth > 1 %} - <div class="section-{{ i }}"> - {% endfor %} - {{ contents }} - {% for i in 1..depth-1 if depth > 1 %} - </div> - {% endfor %} - </body> -</html> diff --git a/templates/layout/html.html.twig b/templates/layout/html.html.twig deleted file mode 100644 index c8c4c019e3be7ac037d2682bf01e4f5729813774..0000000000000000000000000000000000000000 --- a/templates/layout/html.html.twig +++ /dev/null @@ -1,52 +0,0 @@ -{# -/** - * @file - * Theme override for the basic structure of a single Drupal page. - * - * Variables: - * - logged_in: A flag indicating if user is logged in. - * - root_path: The root path of the current page (e.g., node, admin, user). - * - node_type: The content type for the current node, if the page is a node. - * - head_title: List of text elements that make up the head_title variable. - * May contain or more of the following: - * - title: The title of the page. - * - name: The name of the site. - * - slogan: The slogan of the site. - * - page_top: Initial rendered markup. This should be printed before 'page'. - * - page: The rendered page markup. - * - path_info.args: Array of URL arguments un aliassed. - * - page_bottom: Closing rendered markup. This variable should be printed after - * 'page'. - * - db_offline: A flag indicating if the database is offline. - * - placeholder_token: The token for generating head, css, js and js-bottom - * placeholders. - * - * @see template_preprocess_html() - */ -#} -{% - set body_classes = [ - logged_in ? 'user-logged-in', - not root_path ? 'path-frontpage' : 'path-' ~ root_path|clean_class, - node_type ? 'node--type-' ~ node_type|clean_class, - db_offline ? 'db-offline', - ] -%} -<!DOCTYPE html> -<html{{ html_attributes }}> - <head> - <head-placeholder token="{{ placeholder_token|raw }}"> - <title>{{ head_title|safe_join(' | ') }}</title> - <css-placeholder token="{{ placeholder_token|raw }}"> - <js-placeholder token="{{ placeholder_token|raw }}"> - </head> - <body{{ attributes.addClass(body_classes) }}> - <a href="#main-content" class="visually-hidden focusable skip-link"> - {{ 'Skip to main content'|t }} - </a> - {{ page_top }} - {{ page }} - {{ page_bottom }} - <js-bottom-placeholder token="{{ placeholder_token|raw }}"> - </body> -</html> diff --git a/templates/layout/maintenance-page.html.twig b/templates/layout/maintenance-page.html.twig deleted file mode 100644 index c98e795624808d7551aab5a8f165eb4fae2ea227..0000000000000000000000000000000000000000 --- a/templates/layout/maintenance-page.html.twig +++ /dev/null @@ -1,48 +0,0 @@ -{# -/** - * @file - * Bootstrap Barrio's theme implementation to display a single Drupal page while offline. - * - * All available variables are mirrored in page.html.twig. - * - * @see template_preprocess_maintenance_page() - */ - #} -<div id="page-wrapper"> - <div id="page"> - <header id="header" role="banner"> - <div class="section clearfix"> - {% if site_name or site_slogan %} - <div id="name-and-slogan"{{ hide_site_name and hide_site_slogan ? ' class="visually-hidden"' }}> - {% if site_name %} - <div id="site-name"{{ hide_site_name ? ' class="visually-hidden"' }}> - <strong> - <a href="{{ front_page }}" title="{{ 'Home'|t }}" rel="home"><span>{{ site_name }}</span></a> - </strong> - </div> - {% endif %} - {% if site_slogan %} - <div id="site-slogan"{{ hide_site_slogan ? ' class="visually-hidden"' }}> - {{ site_slogan }} - </div> - {% endif %} - </div> - {% endif %} - </div> - </header> - <div id="main-wrapper"> - <div id="main" class="clearfix"> - <main id="content" class="column" role="main"> - <section class="section"> - <a id="main-content"></a> - {% if title %} - <h1 class="title" id="page-title">{{ title }}</h1> - {% endif %} - {{ page.content }} - {{ page.highlighted }} - </section> - </main> - </div> - </div> - </div> -</div> diff --git a/templates/layout/page.html.twig b/templates/layout/page.html.twig deleted file mode 100644 index 73a83c62295ebc046190b2e0546c1546247ec642..0000000000000000000000000000000000000000 --- a/templates/layout/page.html.twig +++ /dev/null @@ -1,190 +0,0 @@ -{# -/** - * @file - * Bootstrap Barrio's theme implementation to display a single page. - * - * The doctype, html, head and body tags are not in this template. Instead they - * can be found in the html.html.twig template normally located in the - * core/modules/system directory. - * - * Available variables: - * - * General utility variables: - * - base_path: The base URL path of the Drupal installation. Will usually be - * "/" unless you have installed Drupal in a sub-directory. - * - is_front: A flag indicating if the current page is the front page. - * - logged_in: A flag indicating if the user is registered and signed in. - * - is_admin: A flag indicating if the user has permission to access - * administration pages. - * - * Site identity: - * - front_page: The URL of the front page. Use this instead of base_path when - * linking to the front page. This includes the language domain or prefix. - * - logo: The url of the logo image, as defined in theme settings. - * - site_name: The name of the site. This is empty when displaying the site - * name has been disabled in the theme settings. - * - site_slogan: The slogan of the site. This is empty when displaying the site - * slogan has been disabled in theme settings. - - * Page content (in order of occurrence in the default page.html.twig): - * - node: Fully loaded node, if there is an automatically-loaded node - * associated with the page and the node ID is the second argument in the - * page's path (e.g. node/12345 and node/12345/revisions, but not - * comment/reply/12345). - * - * Regions: - * - page.top_header: Items for the top header region. - * - page.top_header_form: Items for the top header form region. - * - page.header: Items for the header region. - * - page.header_form: Items for the header form region. - * - page.highlighted: Items for the highlighted region. - * - page.primary_menu: Items for the primary menu region. - * - page.secondary_menu: Items for the secondary menu region. - * - page.featured_top: Items for the featured top region. - * - page.content: The main content of the current page. - * - page.sidebar_first: Items for the first sidebar. - * - page.sidebar_second: Items for the second sidebar. - * - page.featured_bottom_first: Items for the first featured bottom region. - * - page.featured_bottom_second: Items for the second featured bottom region. - * - page.featured_bottom_third: Items for the third featured bottom region. - * - page.footer_first: Items for the first footer column. - * - page.footer_second: Items for the second footer column. - * - page.footer_third: Items for the third footer column. - * - page.footer_fourth: Items for the fourth footer column. - * - page.footer_fifth: Items for the fifth footer column. - * - page.breadcrumb: Items for the breadcrumb region. - * - * Theme variables: - * - navbar_top_attributes: Items for the header region. - * - navbar_attributes: Items for the header region. - * - content_attributes: Items for the header region. - * - sidebar_first_attributes: Items for the highlighted region. - * - sidebar_second_attributes: Items for the primary menu region. - * - sidebar_collapse: If the sidebar_first will collapse. - * - * @see template_preprocess_page() - * @see bootstrap_barrio_preprocess_page() - * @see html.html.twig - */ -#} -<div id="page-wrapper"> - <div id="page"> - <header id="header" class="header" role="banner" aria-label="{{ 'Site header'|t}}"> - {% block head %} - {% if page.secondary_menu or page.top_header or page.top_header_form %} - <nav{{ navbar_top_attributes }}> - {% if container_navbar %} - <div class="container"> - {% endif %} - {{ page.secondary_menu }} - {{ page.top_header }} - {% if page.top_header_form %} - <div class="form-inline navbar-form ml-auto"> - {{ page.top_header_form }} - </div> - {% endif %} - {% if container_navbar %} - </div> - {% endif %} - </nav> - {% endif %} - <nav{{ navbar_attributes }}> - {% if container_navbar %} - <div class="container"> - {% endif %} - {{ page.header }} - {% if page.primary_menu or page.header_form %} - <button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#CollapsingNavbar" aria-controls="CollapsingNavbar" aria-expanded="false" aria-label="Toggle navigation"><span class="navbar-toggler-icon"></span></button> - <div class="collapse navbar-collapse justify-content-end" id="CollapsingNavbar"> - {{ page.primary_menu }} - {% if page.header_form %} - <div class="form-inline navbar-form justify-content-end"> - {{ page.header_form }} - </div> - {% endif %} - </div> - {% endif %} - {% if sidebar_collapse %} - <button class="navbar-toggler navbar-toggler-left" type="button" data-toggle="collapse" data-target="#CollapsingLeft" aria-controls="CollapsingLeft" aria-expanded="false" aria-label="Toggle navigation"></button> - {% endif %} - {% if container_navbar %} - </div> - {% endif %} - </nav> - {% endblock %} - </header> - {% if page.highlighted %} - <div class="highlighted"> - <aside class="{{ container }} section clearfix" role="complementary"> - {{ page.highlighted }} - </aside> - </div> - {% endif %} - {% if page.featured_top %} - {% block featured %} - <div class="featured-top"> - <aside class="featured-top__inner section {{ container }} clearfix" role="complementary"> - {{ page.featured_top }} - </aside> - </div> - {% endblock %} - {% endif %} - <div id="main-wrapper" class="layout-main-wrapper clearfix"> - {% block content %} - <div id="main" class="{{ container }}"> - {{ page.breadcrumb }} - <div class="row row-offcanvas row-offcanvas-left clearfix"> - <main{{ content_attributes }}> - <section class="section"> - <a id="main-content" tabindex="-1"></a> - {{ page.content }} - </section> - </main> - {% if page.sidebar_first %} - <div{{ sidebar_first_attributes }}> - <aside class="section" role="complementary"> - {{ page.sidebar_first }} - </aside> - </div> - {% endif %} - {% if page.sidebar_second %} - <div{{ sidebar_second_attributes }}> - <aside class="section" role="complementary"> - {{ page.sidebar_second }} - </aside> - </div> - {% endif %} - </div> - </div> - {% endblock %} - </div> - {% if page.featured_bottom_first or page.featured_bottom_second or page.featured_bottom_third %} - <div class="featured-bottom"> - <aside class="{{ container }} clearfix" role="complementary"> - {{ page.featured_bottom_first }} - {{ page.featured_bottom_second }} - {{ page.featured_bottom_third }} - </aside> - </div> - {% endif %} - <footer class="site-footer"> - {% block footer %} - <div class="{{ container }}"> - {% if page.footer_first or page.footer_second or page.footer_third or page.footer_fourth %} - <div class="site-footer__top clearfix"> - {{ page.footer_first }} - {{ page.footer_second }} - {{ page.footer_third }} - {{ page.footer_fourth }} - </div> - {% endif %} - {% if page.footer_fifth %} - <div class="site-footer__bottom"> - {{ page.footer_fifth }} - </div> - {% endif %} - </div> - {% endblock %} - </footer> - </div> -</div> diff --git a/templates/layout/region--nowrap.html.twig b/templates/layout/region--nowrap.html.twig deleted file mode 100644 index c6554b923b370b58afeabfbd54e14fbb6913117b..0000000000000000000000000000000000000000 --- a/templates/layout/region--nowrap.html.twig +++ /dev/null @@ -1,17 +0,0 @@ -{# -/** - * @file - * Bartik's theme implementation to display a header region. - * - * Available variables: - * - content: The content for this region, typically blocks. - * - attributes: HTML attributes for the region div. - * - region: The name of the region variable as defined in the theme's - * .info.yml file. - * - * @see template_preprocess_region() - */ -#} -{% if content %} - {{ content }} -{% endif %} diff --git a/templates/layout/region.html.twig b/templates/layout/region.html.twig deleted file mode 100644 index c03d875ef31e2f2260c43d9461cb2775193e3bed..0000000000000000000000000000000000000000 --- a/templates/layout/region.html.twig +++ /dev/null @@ -1,25 +0,0 @@ -{# -/** - * @file - * Theme override to display a region. - * - * Available variables: - * - content: The content for this region, typically blocks. - * - attributes: HTML attributes for the region div. - * - region: The name of the region variable as defined in the theme's - * .info.yml file. - * - * @see template_preprocess_region() - */ -#} -{% - set classes = [ - 'region', - 'region-' ~ region|clean_class, - ] -%} -{% if content %} - <section{{ attributes.addClass(classes) }}> - {{ content }} - </section> -{% endif %} diff --git a/templates/misc/progress-bar.html.twig b/templates/misc/progress-bar.html.twig deleted file mode 100644 index 6bc067699494fc1fc5cf1d382fc5c551a2673ad1..0000000000000000000000000000000000000000 --- a/templates/misc/progress-bar.html.twig +++ /dev/null @@ -1,20 +0,0 @@ -{# -/** - * @file - * Theme override for a progress bar. - * - * Note that the core Batch API uses this only for non-JavaScript batch jobs. - * - * Available variables: - * - label: The label of the working task. - * - percent: The percentage of the progress. - * - message: A string containing information to be displayed. - */ -#} -{% if label %} - <label class="progress-bar-label">{{ label }}</label> -{% endif %} -<div class="progress" data-drupal-progress> - <div class="progress-bar progress-bar-striped progress-bar-animated" role="progressbar" aria-valuenow="{{ percent }}" aria-valuemin="0" aria-valuemax="100" style="width: {{ percent }}%">{{ percent }}%</div> -</div> -<small class="form-text text-muted progress-bar-message">{{ message }}</small> \ No newline at end of file diff --git a/templates/misc/rdf-metadata.html.twig b/templates/misc/rdf-metadata.html.twig deleted file mode 100644 index acc62df16d41b5e10442c5ef92e61ae01a511c28..0000000000000000000000000000000000000000 --- a/templates/misc/rdf-metadata.html.twig +++ /dev/null @@ -1,20 +0,0 @@ -{# -/** - * @file - * Theme override for empty spans with RDF attributes. - * - * The XHTML+RDFa doctype allows either <span></span> or <span /> syntax to - * be used, but for maximum browser compatibility, W3C recommends the - * former when serving pages using the text/html media type, see - * http://www.w3.org/TR/xhtml1/#C_3. - * - * Available variables: - * - metadata: Each item within corresponds to its own set of attributes, - * and therefore, needs its own 'attributes' element. - * - * @see template_preprocess_rdf_metadata() - */ -#} -{% for attributes in metadata %} - <span{{ attributes.addClass('rdf-meta', 'hidden') }}></span> -{% endfor %} diff --git a/templates/misc/status-messages--alerts.html.twig b/templates/misc/status-messages--alerts.html.twig deleted file mode 100644 index ef1f899c0415c7f42bb7b9777540037cc2bef9de..0000000000000000000000000000000000000000 --- a/templates/misc/status-messages--alerts.html.twig +++ /dev/null @@ -1,72 +0,0 @@ -{# -/** - * @file - * Default theme implementation for status messages. - * - * Displays status, error, and warning messages, grouped by type. - * - * An invisible heading identifies the messages for assistive technology. - * Sighted users see a colored box. See http://www.w3.org/TR/WCAG-TECHS/H69.html - * for info. - * - * Add an ARIA label to the contentinfo area so that assistive technology - * user agents will better describe this landmark. - * - * Available variables: - * - message_list: List of messages to be displayed, grouped by type. - * - status_headings: List of all status types. - * - display: (optional) May have a value of 'status' or 'error' when only - * displaying messages of that specific type. - * - attributes: HTML attributes for the element, including: - * - class: HTML classes. - * - * @see template_preprocess_status_messages() - * - * @ingroup themeable - */ -#} -<div class="alert-wrapper" data-drupal-messages> -{% for type, messages in message_list %} - {% - set classes = [ - 'alert', - 'alert-dismissible', - 'fade', - 'show', - 'col-12', - type == 'status' ? 'alert-success', - type == 'warning' ? 'alert-warning', - type == 'error' ? 'alert-danger', - type == 'info' ? 'alert-info', - ] - %} - {% - set role = { - 'status': 'status', - 'error': 'alert', - 'warning': 'alert', - 'info': 'status', - } - %} - <div aria-label="{{ status_headings[type] }}" {{ attributes|without('role', 'aria-label').addClass(classes).setAttribute('role', role[type]) }}> - <button type="button" class="close" data-dismiss="alert" aria-label="Close"> - <span aria-hidden="true">×</span> - </button> - {% if is_message_with_title or is_message_with_icon %} - {% if is_message_with_title %} - <h4 id="{{ title_ids[type] }}" class="alert-heading"> - {{ status_headings[type] }} - </h4> - {% endif %} - {% endif %} - {% for message in messages %} - {% if loop.last %} - {{ message }} - {% else %} - {{ message }} - <hr> - {% endif %} - {% endfor %} - </div> -{% endfor %} -</div> diff --git a/templates/misc/status-messages--toasts.html.twig b/templates/misc/status-messages--toasts.html.twig deleted file mode 100644 index 55277ecb5cf5d179412ae4c9bdb9052e4e3abfeb..0000000000000000000000000000000000000000 --- a/templates/misc/status-messages--toasts.html.twig +++ /dev/null @@ -1,90 +0,0 @@ -{# -/** - * @file - * Default theme implementation for status messages. - * - * Displays status, error, and warning messages, grouped by type. - * - * An invisible heading identifies the messages for assistive technology. - * Sighted users see a colored box. See http://www.w3.org/TR/WCAG-TECHS/H69.html - * for info. - * - * Add an ARIA label to the contentinfo area so that assistive technology - * user agents will better describe this landmark. - * - * Available variables: - * - message_list: List of messages to be displayed, grouped by type. - * - status_headings: List of all status types. - * - display: (optional) May have a value of 'status' or 'error' when only - * displaying messages of that specific type. - * - attributes: HTML attributes for the element, including: - * - class: HTML classes. - * - * @see template_preprocess_status_messages() - * - * @ingroup themeable - */ -#} -{{ attach_library('bootstrap_barrio/toast') }} - -<div class="toast-wrapper" aria-live="polite" aria-atomic="true" data-drupal-messages> - - {% for type, messages in message_list %} - {% - set classes = [ - 'toast', - 'fade', - ] - %} - {% - set heading = { - 'status': 'Status message'|t, - 'error': 'Error message'|t, - 'warning': 'Warning message'|t, - 'info': 'Informative message'|t, - } - %} - {% - set color = { - 'status': '#28a745', - 'warning': '#dc3545', - 'error': '#ffc107', - 'info': '#17a2b8', - } - %} - {% - set role = { - 'status': 'status', - 'warning': 'alert', - 'error': 'alert', - 'info': 'info', - } - %} - {% - set autohide = { - 'status': 'true', - 'warning': 'false', - 'error': 'true', - 'info': 'false', - } - %} - {% for message in messages %} - <!-- Then put toasts within --> - <div {{ attributes|without('role', 'aria-label').addClass(classes).setAttribute('role', role[type]).setAttribute('data-autohide', autohide[type]) }} aria-live="assertive" aria-atomic="true" data-delay="10000"> - <div class="toast-header"> - <svg class="bd-placeholder-img rounded mr-2" width="20" height="20" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid slice" focusable="false" role="img"> - <rect {{ attributes.setAttribute('fill', color[type]) }} width="100%" height="100%"> - </rect> - </svg> - <strong class="mr-auto">{{ status_headings[type] }}</strong> - <button type="button" class="ml-2 mb-1 close" data-dismiss="toast" aria-label="Close"> - <span aria-hidden="true">×</span> - </button> - </div> - <div class="toast-body"> - {{ message }} - </div> - </div> - {% endfor %} - {% endfor %} -</div> diff --git a/templates/misc/status-messages.html.twig b/templates/misc/status-messages.html.twig deleted file mode 100644 index a44a20164196640baebb7d23826f94baf3c7a09c..0000000000000000000000000000000000000000 --- a/templates/misc/status-messages.html.twig +++ /dev/null @@ -1,74 +0,0 @@ -{# -/** - * @file - * Default theme implementation for status messages. - * - * Displays status, error, and warning messages, grouped by type. - * - * An invisible heading identifies the messages for assistive technology. - * Sighted users see a colored box. See http://www.w3.org/TR/WCAG-TECHS/H69.html - * for info. - * - * Add an ARIA label to the contentinfo area so that assistive technology - * user agents will better describe this landmark. - * - * Available variables: - * - message_list: List of messages to be displayed, grouped by type. - * - status_headings: List of all status types. - * - display: (optional) May have a value of 'status' or 'error' when only - * displaying messages of that specific type. - * - attributes: HTML attributes for the element, including: - * - class: HTML classes. - * - * @see template_preprocess_status_messages() - * - * @ingroup themeable - */ -#} -{{ attach_library('bootstrap_barrio/alerts') }} - -<div data-drupal-messages> -{% for type, messages in message_list %} - {% - set classes = [ - 'alert', - 'alert-dismissible', - 'fade', - 'show', - 'col-12', - type == 'status' ? 'alert-success', - type == 'warning' ? 'alert-warning', - type == 'error' ? 'alert-danger', - type == 'info' ? 'alert-info', - ] - %} - {% - set role = { - 'status': 'status', - 'error': 'alert', - 'warning': 'alert', - 'info': 'status', - } - %} - <div aria-label="{{ status_headings[type] }}" {{ attributes|without('role', 'aria-label').addClass(classes).setAttribute('role', role[type]) }}> - <button type="button" class="close" data-dismiss="alert" aria-label="Close"> - <span aria-hidden="true">×</span> - </button> - {% if is_message_with_title or is_message_with_icon %} - {% if is_message_with_title %} - <h4 id="{{ title_ids[type] }}" class="alert-heading"> - {{ status_headings[type] }} - </h4> - {% endif %} - {% endif %} - {% for message in messages %} - {% if loop.last %} - {{ message }} - {% else %} - {{ message }} - <hr> - {% endif %} - {% endfor %} - </div> -{% endfor %} -</div> diff --git a/templates/navigation/book-all-books-block.html.twig b/templates/navigation/book-all-books-block.html.twig deleted file mode 100644 index b4cb64de3d5bfdb2bbbfdf2a32793f53d825a9c6..0000000000000000000000000000000000000000 --- a/templates/navigation/book-all-books-block.html.twig +++ /dev/null @@ -1,22 +0,0 @@ -{# -/** - * @file - * Theme override for rendering book outlines within a block. - * - * This template is used only when the block is configured to "show block on all - * pages", which presents multiple independent books on all pages. - * - * Available variables: - * - book_menus: Book outlines. - * - id: The parent book ID. - * - title: The parent book title. - * - menu: The top-level book links. - * - * @see template_preprocess_book_all_books_block() - */ -#} -{% for book in book_menus %} - <nav id="book-block-menu-{{ book.id }}" class="book-block-menu" role="navigation" aria-label="{% trans %}Book outline for {{ book.title }}{% endtrans %}"> - {{ book.menu }} - </nav> -{% endfor %} diff --git a/templates/navigation/book-navigation.html.twig b/templates/navigation/book-navigation.html.twig deleted file mode 100644 index e696ade32a5887a952c6c77d4e5fffec15c12095..0000000000000000000000000000000000000000 --- a/templates/navigation/book-navigation.html.twig +++ /dev/null @@ -1,56 +0,0 @@ -{# -/** - * @file - * Theme override to navigate books. - * - * Presented under nodes that are a part of book outlines. - * - * Available variables: - * - tree: The immediate children of the current node rendered as an unordered - * list. - * - current_depth: Depth of the current node within the book outline. Provided - * for context. - * - prev_url: URL to the previous node. - * - prev_title: Title of the previous node. - * - parent_url: URL to the parent node. - * - parent_title: Title of the parent node. Not printed by default. Provided - * as an option. - * - next_url: URL to the next node. - * - next_title: Title of the next node. - * - has_links: Flags TRUE whenever the previous, parent or next data has a - * value. - * - book_id: The book ID of the current outline being viewed. Same as the node - * ID containing the entire outline. Provided for context. - * - book_url: The book/node URL of the current outline being viewed. Provided - * as an option. Not used by default. - * - book_title: The book/node title of the current outline being viewed. - * - * @see template_preprocess_book_navigation() - */ -#} -{{ attach_library('bootstrap_barrio/book-navigation') }} -{% if tree or has_links %} - <nav id="book-navigation-{{ book_id }}" class="book-navigation" role="navigation" aria-labelledby="book-label-{{ book_id }}"> - {{ tree }} - {% if has_links %} - <h2 class="visually-hidden" id="book-label-{{ book_id }}">{{ 'Book traversal links for'|t }} {{ book_title }}</h2> - <ul class="book-pager"> - {% if prev_url %} - <li class="book-pager__item book-pager__item--previous"> - <a href="{{ prev_url }}" rel="prev" title="{{ 'Go to previous page'|t }}"><b>{{ '‹'|t }}</b> {{ prev_title }}</a> - </li> - {% endif %} - {% if parent_url %} - <li class="book-pager__item book-pager__item--center"> - <a href="{{ parent_url }}" title="{{ 'Go to parent page'|t }}">{{ 'Up'|t }}</a> - </li> - {% endif %} - {% if next_url %} - <li class="book-pager__item book-pager__item--next"> - <a href="{{ next_url }}" rel="next" title="{{ 'Go to next page'|t }}">{{ next_title }} <b>{{ '›'|t }}</b></a> - </li> - {% endif %} - </ul> - {% endif %} - </nav> -{% endif %} diff --git a/templates/navigation/book-tree.html.twig b/templates/navigation/book-tree.html.twig deleted file mode 100644 index 186a547e14ecc1c09619abf8b3f43db4aa788fad..0000000000000000000000000000000000000000 --- a/templates/navigation/book-tree.html.twig +++ /dev/null @@ -1,55 +0,0 @@ -{# -/** - * @file - * Theme override to display a book tree. - * - * Returns HTML for a wrapper for a book sub-tree. - * - * Available variables: - * - items: A nested list of book items. Each book item contains: - * - attributes: HTML attributes for the book item. - * - below: The book item child items. - * - title: The book link title. - * - url: The book link URL, instance of \Drupal\Core\Url. - * - is_expanded: TRUE if the link has visible children within the current - * book tree. - * - is_collapsed: TRUE if the link has children within the current book tree - * that are not currently visible. - * - in_active_trail: TRUE if the link is in the active trail. - */ -#} -{% import _self as book_tree %} - -{# - We call a macro which calls itself to render the full tree. - @see http://twig.sensiolabs.org/doc/tags/macro.html -#} -{{ book_tree.book_links(items, attributes, 0) }} - -{% macro book_links(items, attributes, menu_level) %} - {% import _self as book_tree %} - {% if items %} - {% if menu_level == 0 %} - <ul{{ attributes.addClass('menu') }}> - {% else %} - <ul class="menu"> - {% endif %} - {% for item in items %} - {% - set classes = [ - 'menu-item', - item.is_expanded ? 'menu-item--expanded', - item.is_collapsed ? 'menu-item--collapsed', - item.in_active_trail ? 'menu-item--active-trail', - ] - %} - <li{{ item.attributes.addClass(classes) }}> - {{ link(item.title, item.url) }} - {% if item.below %} - {{ book_tree.book_links(item.below, attributes, menu_level + 1) }} - {% endif %} - </li> - {% endfor %} - </ul> - {% endif %} -{% endmacro %} diff --git a/templates/navigation/breadcrumb.html.twig b/templates/navigation/breadcrumb.html.twig deleted file mode 100644 index c9e465c32bdd79c3b7f8135381da05c75fdf9aff..0000000000000000000000000000000000000000 --- a/templates/navigation/breadcrumb.html.twig +++ /dev/null @@ -1,28 +0,0 @@ -{# -/** - * @file - * Theme override for a breadcrumb trail. - * - * Available variables: - * - breadcrumb: Breadcrumb trail items. - */ -#} -{{ attach_library('bootstrap_barrio/breadcrumb') }} - -{% if breadcrumb %} - <nav role="navigation" aria-label="breadcrumb"> - <ol class="breadcrumb"> - {% for item in breadcrumb %} - {% if item.url %} - <li class="breadcrumb-item"> - <a href="{{ item.url }}">{{ item.text }}</a> - </li> - {% else %} - <li class="breadcrumb-item active"> - {{ item.text }} - </li> - {% endif %} - {% endfor %} - </ol> - </nav> -{% endif %} diff --git a/templates/navigation/links--inline.html.twig b/templates/navigation/links--inline.html.twig deleted file mode 100644 index 09dc75c86672a5b7ed1def07ddd0fcc971ab2ccc..0000000000000000000000000000000000000000 --- a/templates/navigation/links--inline.html.twig +++ /dev/null @@ -1,62 +0,0 @@ -{# -/** - * @file - * Theme override to display inline 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 <span> - * tag if no 'href' is supplied. - * - link_key: The link CSS class. - * - 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 - */ -#} -{{ attach_library('bootstrap_barrio/links') }} - -{% if links %} - <div class="inline__links"> - {%- if heading -%} - {%- if heading.level -%} - <{{ heading.level }}{{ heading.attributes }}>{{ heading.text }}</{{ heading.level }}> - {%- else -%} - <h2{{ heading.attributes }}>{{ heading.text }}</h2> - {%- endif -%} - {%- endif -%} - <nav{{ attributes.addClass(['nav', 'links-inline']) }}> - {%- for key, item in links -%} - <span{{ item.attributes.addClass(key|clean_class, 'nav-link') }}> - {%- if item.link -%} - {{ item.link }} - {%- elseif item.text_attributes -%} - <span{{ item.text_attributes }}>{{ item.text }}</span> - {%- else -%} - {{ item.text }} - {%- endif -%} - </span> - {%- endfor -%} - </nav> - </div> -{% endif %} diff --git a/templates/navigation/links--language-block.html.twig b/templates/navigation/links--language-block.html.twig deleted file mode 100644 index aa49118f9ed6e2962a79c8641559f417f1b2745f..0000000000000000000000000000000000000000 --- a/templates/navigation/links--language-block.html.twig +++ /dev/null @@ -1,53 +0,0 @@ -{# -/** - * @file - * Theme override to display inline 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 <span> - * tag if no 'href' is supplied. - * - link_key: The link CSS class. - * - 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 - */ -#} -{{ attach_library('bootstrap_barrio/links') }} - -{% if links %} - <nav{{ attributes.addClass(['nav', 'links-inline']) }}> - {%- for key, item in links -%} - <span{{ item.attributes.addClass(key|clean_class, 'nav-link') }}> - {%- if item.link -%} - {{ item.link }} - {%- elseif item.text_attributes -%} - <span{{ item.text_attributes }}>{{ item.text }}</span> - {%- else -%} - {{ item.text }} - {%- endif -%} - </span> - {%- endfor -%} - </nav> -{% endif %} \ No newline at end of file diff --git a/templates/navigation/links.html.twig b/templates/navigation/links.html.twig deleted file mode 100644 index 88980ba2b07cdb8ef63a1e7c8ac98531d3dd3522..0000000000000000000000000000000000000000 --- a/templates/navigation/links.html.twig +++ /dev/null @@ -1,58 +0,0 @@ -{# -/** - * @file - * Theme override for a set of 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 <span> - * tag if no 'href' is supplied. - * - link_key: The link CSS class. - * - 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 'sr-only' 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() - */ -#} -{% if links -%} - {{ attach_library('bootstrap_barrio/links') }} - - {%- if heading -%} - {%- if heading.level -%} - <{{ heading.level }}{{ heading.attributes }}>{{ heading.text }}</{{ heading.level }}> - {%- else -%} - <h2{{ heading.attributes }}>{{ heading.text }}</h2> - {%- endif -%} - {%- endif -%} - <ul{{ attributes }}> - {%- for key, item in links -%} - <li{{ item.attributes.addClass(key|clean_class) }}> - {%- if item.link -%} - {{ item.link }} - {%- elseif item.text_attributes -%} - <span{{ item.text_attributes }}>{{ item.text }}</span> - {%- else -%} - {{ item.text }} - {%- endif -%} - </li> - {%- endfor -%} - </ul> -{%- endif %} diff --git a/templates/navigation/menu--account.html.twig b/templates/navigation/menu--account.html.twig deleted file mode 100644 index 57de4861362743c9325c0f730d2bb6b41e4c1505..0000000000000000000000000000000000000000 --- a/templates/navigation/menu--account.html.twig +++ /dev/null @@ -1,48 +0,0 @@ -{# -/** - * @file - * Bootstrap Barrio's override to display Menu Account. - * - * Available variables: - * - menu_name: The machine name of the menu. - * - items: A nested list of menu items. Each menu item contains: - * - attributes: HTML attributes for the menu item. - * - below: The menu item child items. - * - title: The menu link title. - * - url: The menu link url, instance of \Drupal\Core\Url - * - localized_options: Menu link localized options. - * - is_expanded: TRUE if the link has visible children within the current - * menu tree. - * - is_collapsed: TRUE if the link has children within the current menu tree - * that are not currently visible. - * - in_active_trail: TRUE if the link is in the active trail. - */ -#} -{% import _self as menus %} - -{# - We call a macro which calls itself to render the full tree. - @see http://twig.sensiolabs.org/doc/tags/macro.html -#} -{{ menus.menu_links(items, attributes, 0) }} - -{% macro menu_links(items, attributes, menu_level) %} - {% import _self as menus %} - {% if items %} - {% if menu_level == 0 %} - <div{{ attributes.addClass('nav') }}> - {% for item in items %} - {% - set classes = [ - 'nav-link', - item.in_active_trail ? 'active', - item.url.getOption('attributes').class ? item.url.getOption('attributes').class | join(' '), - 'nav-link-' ~ item.url.toString() | clean_class, - ] - %} - {{ link(item.title, item.url, {'class': classes}) }} - {% endfor %} - </div> - {% endif %} - {% endif %} -{% endmacro %} diff --git a/templates/navigation/menu--footer.html.twig b/templates/navigation/menu--footer.html.twig deleted file mode 100644 index 489b9abf4da31a0960b9f572e3c46a9622fb51df..0000000000000000000000000000000000000000 --- a/templates/navigation/menu--footer.html.twig +++ /dev/null @@ -1,63 +0,0 @@ -{# -/** - * @file - * Theme override to display a menu. - * - * Available variables: - * - menu_name: The machine name of the menu. - * - items: A nested list of menu items. Each menu item contains: - * - attributes: HTML attributes for the menu item. - * - below: The menu item child items. - * - title: The menu link title. - * - url: The menu link url, instance of \Drupal\Core\Url - * - localized_options: Menu link localized options. - * - is_expanded: TRUE if the link has visible children within the current - * menu tree. - * - is_collapsed: TRUE if the link has children within the current menu tree - * that are not currently visible. - * - in_active_trail: TRUE if the link is in the active trail. - */ -#} -{% import _self as menus %} - -{# - We call a macro which calls itself to render the full tree. - @see http://twig.sensiolabs.org/doc/tags/macro.html -#} -{{ menus.menu_links(items, attributes, 0) }} - -{% macro menu_links(items, attributes, menu_level) %} - {% import _self as menus %} - {% if items %} - {% if menu_level == 0 %} - <ul{{ attributes.addClass('nav navbar-nav') }}> - {% else %} - <ul class="menu"> - {% endif %} - {% for item in items %} - {% - set classes = [ - 'nav-item', - item.is_expanded ? 'menu-item--expanded', - item.is_collapsed ? 'menu-item--collapsed', - item.in_active_trail ? 'active', - ] - %} - <li{{ item.attributes.addClass(classes) }}> - {% - set link_classes = [ - 'nav-link', - item.in_active_trail ? 'active', - item.url.getOption('attributes').class ? item.url.getOption('attributes').class | join(' '), - 'nav-link-' ~ item.url.toString() | clean_class, - ] - %} - {{ link(item.title, item.url, {'class': link_classes}) }} - {% if item.below %} - {{ menus.menu_links(item.below, attributes, menu_level + 1) }} - {% endif %} - </li> - {% endfor %} - </ul> - {% endif %} -{% endmacro %} diff --git a/templates/navigation/menu--main.html.twig b/templates/navigation/menu--main.html.twig deleted file mode 100644 index cabfb8813dfe2a761d880586d10036805c898048..0000000000000000000000000000000000000000 --- a/templates/navigation/menu--main.html.twig +++ /dev/null @@ -1,67 +0,0 @@ -{# -/** - * @file - * Bootstrap Barrio's override to display a menu. - * - * Available variables: - * - menu_name: The machine name of the menu. - * - items: A nested list of menu items. Each menu item contains: - * - attributes: HTML attributes for the menu item. - * - below: The menu item child items. - * - title: The menu link title. - * - url: The menu link url, instance of \Drupal\Core\Url - * - localized_options: Menu link localized options. - * - is_expanded: TRUE if the link has visible children within the current - * menu tree. - * - is_collapsed: TRUE if the link has children within the current menu tree - * that are not currently visible. - * - in_active_trail: TRUE if the link is in the active trail. - */ -#} -{% import _self as menus %} - -{# - We call a macro which calls itself to render the full tree. - @see http://twig.sensiolabs.org/doc/tags/macro.html -#} -{{ menus.menu_links(items, attributes, 0) }} - -{% macro menu_links(items, attributes, menu_level) %} - {% import _self as menus %} - {% if items %} - {% if menu_level == 0 %} - <ul{{ attributes.addClass('nav navbar-nav') }}> - {% else %} - <ul class="dropdown-menu"> - {% endif %} - {% for item in items %} - {% - set classes = [ - menu_level ? 'dropdown-item' : 'nav-item', - item.is_expanded ? 'menu-item--expanded', - item.is_collapsed ? 'menu-item--collapsed', - item.in_active_trail ? 'active', - item.below ? 'dropdown', - ] - %} - <li{{ item.attributes.addClass(classes) }}> - {% - set link_classes = [ - not menu_level ? 'nav-link', - item.in_active_trail ? 'active', - item.below ? 'dropdown-toggle', - item.url.getOption('attributes').class ? item.url.getOption('attributes').class | join(' '), - 'nav-link-' ~ item.url.toString() | clean_class, - ] - %} - {% if item.below %} - {{ link(item.title, item.url, {'class': link_classes, 'data-toggle': 'dropdown', 'aria-expanded': 'false', 'aria-haspopup': 'true' }) }} - {{ menus.menu_links(item.below, attributes, menu_level + 1) }} - {% else %} - {{ link(item.title, item.url, {'class': link_classes}) }} - {% endif %} - </li> - {% endfor %} - </ul> - {% endif %} -{% endmacro %} diff --git a/templates/navigation/menu-local-action.html.twig b/templates/navigation/menu-local-action.html.twig deleted file mode 100644 index f4e1d7f7aaaa01555de6412897a7c7a19a05c21e..0000000000000000000000000000000000000000 --- a/templates/navigation/menu-local-action.html.twig +++ /dev/null @@ -1,13 +0,0 @@ -{# -/** - * @file - * Theme override for a single local action link. - * - * Available variables: - * - attributes: HTML attributes for the wrapper element. - * - link: A rendered link element. - * - * @see template_preprocess_menu_local_action() - */ -#} -<li{{ attributes.addClass('nav-link') }}>{{ link }}</li> diff --git a/templates/navigation/menu-local-task.html.twig b/templates/navigation/menu-local-task.html.twig deleted file mode 100644 index 9af5ef1488d35f831c9d79415d17a441c4b22a45..0000000000000000000000000000000000000000 --- a/templates/navigation/menu-local-task.html.twig +++ /dev/null @@ -1,27 +0,0 @@ -{# -/** - * @file - * Bootstrap Barrio's Theme override for a local task link. - * - * Available variables: - * - attributes: HTML attributes for the wrapper element. - * - is_active: Whether the task item is an active tab. - * - link: A rendered link element. - * - item.text: Text for the link - * - item.url: URL object for link - * - * Note: This template renders the content for each task item in - * menu-local-tasks.html.twig. - * - * @see template_preprocess_menu_local_task() - */ -#} -{% - set classes = [ - 'nav-link', - is_active ? 'active', - item.url.getOption('attributes').class ? item.url.getOption('attributes').class | join(' '), - 'nav-link-' ~ item.url.toString() | clean_class, - ] -%} -<li{{ attributes.addClass(is_active ? 'active', 'nav-item') }}>{{ link(item.text, item.url, {'class': classes}) }}</li> diff --git a/templates/navigation/menu-local-tasks.html.twig b/templates/navigation/menu-local-tasks.html.twig deleted file mode 100644 index ca56182be6bf088ba3f463cfe1a2911f0a3fac37..0000000000000000000000000000000000000000 --- a/templates/navigation/menu-local-tasks.html.twig +++ /dev/null @@ -1,24 +0,0 @@ -{# -/** - * @file - * Bootstrap Barrio's Theme override to display primary and secondary local tasks. - * - * Available variables: - * - primary: HTML list items representing primary tasks. - * - secondary: HTML list items representing primary tasks. - * - * Each item in these variables (primary and secondary) can be individually - * themed in menu-local-task.html.twig. - * - * @see template_preprocess_menu_local_tasks() - */ -#} -{{ attach_library('bootstrap_barrio/tabs') }} -{% if primary %} - <h2 class="visually-hidden">{{ 'Primary tabs'|t }}</h2> - <ul class="nav nav-tabs primary">{{ primary }}</ul> -{% endif %} -{% if secondary %} - <h2 class="visually-hidden">{{ 'Secondary tabs'|t }}</h2> - <ul class="nav nav-tabs secondary">{{ secondary }}</ul> -{% endif %} diff --git a/templates/navigation/menu.html.twig b/templates/navigation/menu.html.twig deleted file mode 100644 index e173e0c6e8fbe0dedb693bab905bb07e7c851aef..0000000000000000000000000000000000000000 --- a/templates/navigation/menu.html.twig +++ /dev/null @@ -1,63 +0,0 @@ -{# -/** - * @file - * Theme override to display a menu. - * - * Available variables: - * - menu_name: The machine name of the menu. - * - items: A nested list of menu items. Each menu item contains: - * - attributes: HTML attributes for the menu item. - * - below: The menu item child items. - * - title: The menu link title. - * - url: The menu link url, instance of \Drupal\Core\Url - * - localized_options: Menu link localized options. - * - is_expanded: TRUE if the link has visible children within the current - * menu tree. - * - is_collapsed: TRUE if the link has children within the current menu tree - * that are not currently visible. - * - in_active_trail: TRUE if the link is in the active trail. - */ -#} -{% import _self as menus %} - -{# - We call a macro which calls itself to render the full tree. - @see http://twig.sensiolabs.org/doc/tags/macro.html -#} -{{ menus.menu_links(items, attributes, 0) }} - -{% macro menu_links(items, attributes, menu_level) %} - {% import _self as menus %} - {% if items %} - {% if menu_level == 0 %} - <ul{{ attributes.addClass('nav') }}> - {% else %} - <ul class="menu"> - {% endif %} - {% for item in items %} - {% - set classes = [ - 'nav-item', - item.is_expanded ? 'menu-item--expanded', - item.is_collapsed ? 'menu-item--collapsed', - item.in_active_trail ? 'menu-item--active-trail', - ] - %} - <li{{ item.attributes.addClass(classes) }}> - {% - set link_classes = [ - 'nav-link', - item.in_active_trail ? 'active', - item.url.getOption('attributes').class ? item.url.getOption('attributes').class | join(''), - 'nav-link-' ~ item.url.toString() | clean_class, - ] - %} - {{ link(item.title, item.url, {'class': link_classes}) }} - {% if item.below %} - {{ menus.menu_links(item.below, attributes, menu_level + 1) }} - {% endif %} - </li> - {% endfor %} - </ul> - {% endif %} -{% endmacro %} diff --git a/templates/navigation/pager.html.twig b/templates/navigation/pager.html.twig deleted file mode 100644 index 2434ecc80850dc89449720298969581647d5cf9b..0000000000000000000000000000000000000000 --- a/templates/navigation/pager.html.twig +++ /dev/null @@ -1,96 +0,0 @@ -{# -/** - * @file - * Theme override to display a pager. - * - * Available variables: - * - items: List of pager items. - * The list is keyed by the following elements: - * - first: Item for the first page; not present on the first page of results. - * - previous: Item for the previous page; not present on the first page - * of results. - * - next: Item for the next page; not present on the last page of results. - * - last: Item for the last page; not present on the last page of results. - * - pages: List of pages, keyed by page number. - * Sub-sub elements: - * items.first, items.previous, items.next, items.last, and each item inside - * items.pages contain the following elements: - * - href: URL with appropriate query parameters for the item. - * - attributes: A keyed list of HTML attributes for the item. - * - text: The visible text used for the item link, such as "‹ Previous" - * or "Next ›". - * - current: The page number of the current page. - * - ellipses: If there are more pages than the quantity allows, then an - * ellipsis before or after the listed pages may be present. - * - previous: Present if the currently visible list of pages does not start - * at the first page. - * - next: Present if the visible list of pages ends before the last page. - * - * @see template_preprocess_pager() - */ -#} -{% if items %} - <nav aria-label="{{ heading_id }}"> - <h4 id="{{ heading_id }}" class="sr-only">{{ 'Pagination'|t }}</h4> - <ul class="pagination js-pager__items"> - {# Print first item if we are not on the first page. #} - {% if items.first %} - <li class="page-item"> - <a href="{{ items.first.href }}" title="{{ 'Go to first page'|t }}"{{ items.first.attributes|without('href', 'title') }} class="page-link"> - <span aria-hidden="true">{{ items.first.text|default('«'|t) }}</span> - <span class="sr-only">{{ 'First page'|t }}</span> - </a> - </li> - {% endif %} - {# Print previous item if we are not on the first page. #} - {% if items.previous %} - <li class="page-item"> - <a href="{{ items.previous.href }}" title="{{ 'Go to previous page'|t }}" rel="prev"{{ items.previous.attributes|without('href', 'title', 'rel') }} class="page-link"> - <span aria-hidden="true">{{ items.previous.text|default('‹'|t) }}</span> - <span class="sr-only">{{ 'Previous page'|t }}</span> - </a> - </li> - {% endif %} - {# Add an ellipsis if there are further previous pages. #} - {% if ellipses.previous %} - <li class="page-item" role="presentation">…</li> - {% endif %} - {# Now generate the actual pager piece. #} - {% for key, item in items.pages %} - <li class="page-item {{ current == key ? 'active' : '' }}"> - {% if current == key %} - <span class="page-link"> - {{- key -}} - </span> - {% else %} - <a href="{{ item.href }}" title="{{ title }}"{{ item.attributes|without('href', 'title') }} class="page-link"> - {{- key -}} - </a> - {% endif %} - </li> - {% endfor %} - {# Add an ellipsis if there are further next pages. #} - {% if ellipses.next %} - <li class="page-item" role="presentation">…</li> - {% endif %} - {# Print next item if we are not on the last page. #} - {% if items.next %} - <li class="pager__item--next"> - <a href="{{ items.next.href }}" title="{{ 'Go to next page'|t }}" rel="next"{{ items.next.attributes|without('href', 'title', 'rel') }} class="page-link"> - <span aria-hidden="true">{{ items.next.text|default('›'|t) }}</span> - <span class="sr-only">{{ 'Next page'|t }}</span> - </a> - </li> - {% endif %} - {# Print last item if we are not on the last page. #} - {% if items.last %} - <li class="page-item"> - <a href="{{ items.last.href }}" title="{{ 'Go to last page'|t }}"{{ items.last.attributes|without('href', 'title') }} class="page-link"> - <span aria-hidden="true">{{ items.last.text|default('»'|t) }}</span> - <span class="sr-only">{{ 'Last page'|t }}</span> - </a> - </li> - {% endif %} - </ul> - </nav> -{% endif %} diff --git a/templates/navigation/toolbar.html.twig b/templates/navigation/toolbar.html.twig deleted file mode 100644 index 20f12d48b2d4b131393123740fe6e7850a0623f0..0000000000000000000000000000000000000000 --- a/templates/navigation/toolbar.html.twig +++ /dev/null @@ -1,46 +0,0 @@ -{# -/** - * @file - * Theme override for the administrative toolbar. - * - * Available variables: - * - attributes: HTML attributes for the wrapper. - * - toolbar_attributes: HTML attributes to apply to the toolbar. - * - toolbar_heading: The heading or label for the toolbar. - * - tabs: List of tabs for the toolbar. - * - attributes: HTML attributes for the tab container. - * - link: Link or button for the menu tab. - * - trays: Toolbar tray list, each associated with a tab. Each tray in trays - * contains: - * - attributes: HTML attributes to apply to the tray. - * - label: The tray's label. - * - links: The tray menu links. - * - remainder: Any non-tray, non-tab elements left to be rendered. - * - * @see template_preprocess_toolbar() - */ -#} -<div{{ attributes.addClass('toolbar') }}> - <nav{{ toolbar_attributes.addClass('toolbar-bar', 'clearfix') }}> - <h2 class="visually-hidden">{{ toolbar_heading }}</h2> - {% for key, tab in tabs %} - {% set tray = trays[key] %} - <div{{ tab.attributes.addClass('toolbar-tab') }}> - {{ tab.link }} - {% spaceless %} - <div{{ tray.attributes }}> - {% if tray.label %} - <nav class="toolbar-lining clearfix" role="navigation" aria-label="{{ tray.label }}"> - <h3 class="toolbar-tray-name visually-hidden">{{ tray.label }}</h3> - {% else %} - <nav class="toolbar-lining clearfix" role="navigation"> - {% endif %} - {{ tray.links }} - </nav> - </div> - {% endspaceless %} - </div> - {% endfor %} - </nav> - {{ remainder }} -</div> diff --git a/templates/navigation/vertical-tabs.html.twig b/templates/navigation/vertical-tabs.html.twig deleted file mode 100644 index 52f56fbd8b269a513ed6ed67d7c0ffd0e9f0d4d1..0000000000000000000000000000000000000000 --- a/templates/navigation/vertical-tabs.html.twig +++ /dev/null @@ -1,13 +0,0 @@ -{# -/** - * @file - * Theme override for vertical tabs. - * - * Available variables - * - attributes: A list of HTML attributes for the wrapper element. - * - children: The rendered checkboxes. - * - * @see template_preprocess_vertical_tabs() - */ -#} -<div{{ attributes.setAttribute('data-vertical-tabs-panes', TRUE).addClass('col-sm-8') }}>{{ children }}</div> diff --git a/templates/user/forum-submitted.html.twig b/templates/user/forum-submitted.html.twig deleted file mode 100644 index 57311e96b59b19efc03430cb193a4606d9cbe782..0000000000000000000000000000000000000000 --- a/templates/user/forum-submitted.html.twig +++ /dev/null @@ -1,21 +0,0 @@ -{# -/** - * @file - * Theme override for a forum post submission string. - * - * The submission string indicates when and by whom a topic was submitted. - * - * Available variables: - * - author: The author of the post. - * - time: How long ago the post was created. - * - topic: An object with the raw data of the post. Potentially unsafe. Be - * sure to clean this data before printing. - * - * @see template_preprocess_forum_submitted() - */ -#} -{% if time %} - <span class="submitted">{% trans %}By {{ author }} {{ time }} ago{% endtrans %}</span> -{% else %} - {{ 'n/a'|t }} -{% endif %} diff --git a/templates/user/user.html.twig b/templates/user/user.html.twig deleted file mode 100644 index 9a824effd35f59462e2bc14b740fde5f437f50a3..0000000000000000000000000000000000000000 --- a/templates/user/user.html.twig +++ /dev/null @@ -1,23 +0,0 @@ -{# -/** - * @file - * Theme override to present all user data. - * - * This template is used when viewing a registered user's page, - * e.g., example.com/user/123. 123 being the user's ID. - * - * Available variables: - * - content: A list of content items. Use 'content' to print all content, or - * print a subset such as 'content.field_example'. Fields attached to a user - * such as 'user_picture' are available as 'content.user_picture'. - * - attributes: HTML attributes for the container element. - * - user: A Drupal User entity. - * - * @see template_preprocess_user() - */ -#} -<article{{ attributes.addClass('profile') }}> - {% if content %} - {{- content -}} - {% endif %} -</article> diff --git a/templates/user/username.html.twig b/templates/user/username.html.twig deleted file mode 100644 index 3ed5c95cb3ed118ad41834863cc234ffb40d24d3..0000000000000000000000000000000000000000 --- a/templates/user/username.html.twig +++ /dev/null @@ -1,23 +0,0 @@ -{# -/** - * @file - * Theme override for displaying a username. - * - * Available variables: - * - account: The full account information for the user. - * - name: The user's name, sanitized. - * - extra: Additional text to append to the user's name, sanitized. - * - link_path: The path or URL of the user's profile page, home page, - * or other desired page to link to for more information about the user. - * - link_options: Options to pass to the url() function's $options parameter if - * linking the user's name to the user's page. - * - attributes: HTML attributes for the containing element. - * - * @see template_preprocess_username() - */ -#} -{% if link_path -%} - <a{{ attributes.addClass('username') }}>{{ name }}{{ extra }}</a> -{%- else -%} - <span{{ attributes }}>{{ name }}{{ extra }}</span> -{%- endif -%} diff --git a/templates/views/views-exposed-form.html.twig b/templates/views/views-exposed-form.html.twig deleted file mode 100644 index 6519490f79f04e652f416394dbbf611420d368f9..0000000000000000000000000000000000000000 --- a/templates/views/views-exposed-form.html.twig +++ /dev/null @@ -1,21 +0,0 @@ -{# -/** - * @file - * Theme override for a views exposed form. - * - * Available variables: - * - form: A render element representing the form. - * - * @see template_preprocess_views_exposed_form() - */ -#} -{% if q is not empty %} - {# - This ensures that, if clean URLs are off, the 'q' is added first, - as a hidden form element, so that it shows up first in the POST URL. - #} -{{ q }} -{% endif %} -<div class="form-row"> - {{ form }} -</div> diff --git a/templates/views/views-mini-pager.html.twig b/templates/views/views-mini-pager.html.twig deleted file mode 100644 index e9ac6182c5c6a0c6aa1e16d7eaac487aa925d2c5..0000000000000000000000000000000000000000 --- a/templates/views/views-mini-pager.html.twig +++ /dev/null @@ -1,45 +0,0 @@ - {# - /** - * @file - * Default theme implementation for a views mini-pager. - * - * Available variables: - * - items: List of pager items. - * - * @see template_preprocess_views_mini_pager() - * - * @ingroup themeable - */ - #} - {% if items.previous or items.next %} - <nav aria-label="Page navigation"> - <h4 class="visually-hidden">{{ 'Pagination'|t }}</h4> - <ul class="js-pager__items pagination"> - {% if items.previous %} - <li class="page-item"> - <a class="page-link" href="{{ items.previous.href }}" title="{{ 'Go to previous page'|t }}" rel="prev"{{ items.previous.attributes|without('href', 'title', 'rel') }}> - <span class="visually-hidden">{{ 'Previous page'|t }}</span> - <span aria-hidden="true">{{ items.previous.text|default('‹‹'|t) }}</span> - </a> - </li> - {% endif %} - {% if items.current %} - <li class="page-item"> - <span class="page-link"> - {% trans %} - Page {{ items.current }} - {% endtrans %} - </span> - </li> - {% endif %} - {% if items.next %} - <li class="page-item"> - <a class="page-link" href="{{ items.next.href }}" title="{{ 'Go to next page'|t }}" rel="next"{{ items.next.attributes|without('href', 'title', 'rel') }}> - <span class="visually-hidden">{{ 'Next page'|t }}</span> - <span aria-hidden="true">{{ items.next.text|default('››'|t) }}</span> - </a> - </li> - {% endif %} - </ul> - </nav> - {% endif %} diff --git a/templates/views/views-view--card.html.twig b/templates/views/views-view--card.html.twig deleted file mode 100644 index 925f6ebcc351ae27c18e64a8a9d4d51ca465c0ca..0000000000000000000000000000000000000000 --- a/templates/views/views-view--card.html.twig +++ /dev/null @@ -1,95 +0,0 @@ -{# -/** - * @file - * Theme override for a main view template. - * - * Available variables: - * - attributes: Remaining HTML attributes for the element. - * - css_name: A css-safe version of the view name. - * - css_class: The user-specified classes names, if any. - * - header: The optional header. - * - footer: The optional footer. - * - rows: The results of the view query, if any. - * - empty: The content to display if there are no rows. - * - pager: The optional pager next/prev links to display. - * - exposed: Exposed widget form/info to display. - * - feed_icons: Optional feed icons to display. - * - more: An optional link to the next page of results. - * - title: Title of the view, only used when displaying in the admin preview. - * - title_prefix: Additional output populated by modules, intended to be - * displayed in front of the view title. - * - title_suffix: Additional output populated by modules, intended to be - * displayed after the view title. - * - attachment_before: An optional attachment view to be displayed before the - * view content. - * - attachment_after: An optional attachment view to be displayed after the - * view content. - * - dom_id: Unique id for every view being printed to give unique class for - * Javascript. - * - * @see template_preprocess_views_view() - */ -#} -{% - set classes = [ - 'view', - 'view-' ~ id|clean_class, - 'view-id-' ~ id, - 'view-display-id-' ~ display_id, - dom_id ? 'js-view-dom-id-' ~ dom_id, - ] -%} -<div{{ attributes.addClass(classes) }}> - {{ title_prefix }} - {% if title %} - {{ title }} - {% endif %} - {{ title_suffix }} - {% if header %} - <div class="view-header"> - {{ header }} - </div> - {% endif %} - {% if exposed %} - <div class="view-filters"> - {{ exposed }} - </div> - {% endif %} - {% if attachment_before %} - <div class="attachment attachment-before"> - {{ attachment_before }} - </div> - {% endif %} - - {% if rows %} - <div class="card-columns"> - {{ rows }} - </div> - {% elseif empty %} - <div class="view-empty"> - {{ empty }} - </div> - {% endif %} - - {% if pager %} - {{ pager }} - {% endif %} - {% if attachment_after %} - <div class="attachment attachment-after"> - {{ attachment_after }} - </div> - {% endif %} - {% if more %} - {{ more }} - {% endif %} - {% if footer %} - <div class="view-footer"> - {{ footer }} - </div> - {% endif %} - {% if feed_icons %} - <div class="feed-icons"> - {{ feed_icons }} - </div> - {% endif %} -</div> diff --git a/templates/views/views-view-grid.html.twig b/templates/views/views-view-grid.html.twig deleted file mode 100644 index 8b98961d489d6f76cfe51cff12d5250e83c0e2ed..0000000000000000000000000000000000000000 --- a/templates/views/views-view-grid.html.twig +++ /dev/null @@ -1,77 +0,0 @@ -{# -/** - * @file - * Theme override for views to display rows in a grid. - * - * Available variables: - * - attributes: HTML attributes for the wrapping element. - * - title: The title of this group of rows. - * - view: The view object. - * - rows: The rendered view results. - * - options: The view plugin style options. - * - row_class_default: A flag indicating whether default classes should be - * used on rows. - * - col_class_default: A flag indicating whether default classes should be - * used on columns. - * - items: A list of grid items. Each item contains a list of rows or columns. - * The order in what comes first (row or column) depends on which alignment - * type is chosen (horizontal or vertical). - * - attributes: HTML attributes for each row or column. - * - content: A list of columns or rows. Each row or column contains: - * - attributes: HTML attributes for each row or column. - * - content: The row or column contents. - * - * @see template_preprocess_views_view_grid() - */ -#} -{% - set classes = [ - 'views-view-grid', - options.alignment, - 'cols-' ~ options.columns, - 'clearfix', - 'col', - ] -%} -{% if options.row_class_default %} - {% - set row_classes = [ - 'views-row', - options.alignment == 'horizontal' ? 'clearfix', - ] - %} -{% endif %} -{% if options.col_class_default %} - {% - set col_classes = [ - 'views-col', - options.alignment == 'vertical' ? 'clearfix', - ] - %} -{% endif %} -{% if title %} - <h3>{{ title }}</h3> -{% endif %} -<div{{ attributes.addClass(classes) }}> - {% if options.alignment == 'horizontal' %} - {% for row in items %} - <div{{ row.attributes.addClass(row_classes, options.row_class_default ? 'row-' ~ loop.index) }}> - {% for column in row.content %} - <div{{ column.attributes.addClass(col_classes, options.col_class_default ? 'col-' ~ loop.index) }}> - {{ column.content }} - </div> - {% endfor %} - </div> - {% endfor %} - {% else %} - {% for column in items %} - <div{{ column.attributes.addClass(col_classes, options.col_class_default ? 'col-' ~ loop.index) }}> - {% for row in column.content %} - <div{{ row.attributes.addClass(row_classes, options.row_class_default ? 'row-' ~ loop.index) }}> - {{ row.content }} - </div> - {% endfor %} - </div> - {% endfor %} - {% endif %} -</div> diff --git a/templates/views/views-view-grouping.html.twig b/templates/views/views-view-grouping.html.twig deleted file mode 100644 index 44905e56b7942e64446eba7fef095974f48ec64b..0000000000000000000000000000000000000000 --- a/templates/views/views-view-grouping.html.twig +++ /dev/null @@ -1,20 +0,0 @@ -{# -/** - * @file - * Theme override to display a single views grouping. - * - * Available variables: - * - view: The view object. - * - grouping: The grouping instruction. - * - grouping_level: A number indicating the hierarchical level of the grouping. - * - title: The group heading. - * - content: The content to be grouped. - * - rows: The rows returned from the view. - * - * @see template_preprocess_views_view_grouping() - */ -#} -<div class="view-grouping"> - <div class="view-grouping-header">{{ title }}</div> - <div class="view-grouping-content">{{ content }}</div> -</div> diff --git a/templates/views/views-view-list.html.twig b/templates/views/views-view-list.html.twig deleted file mode 100644 index 44d4766d44b20d97b3480a289f01320855412a34..0000000000000000000000000000000000000000 --- a/templates/views/views-view-list.html.twig +++ /dev/null @@ -1,36 +0,0 @@ -{# -/** - * @file - * Theme override for a view template to display a list of rows. - * - * Available variables: - * - attributes: HTML attributes for the container. - * - rows: A list of rows for this list. - * - attributes: The row's HTML attributes. - * - content: The row's contents. - * - title: The title of this group of rows. May be empty. - * - list: @todo. - * - type: Starting tag will be either a ul or ol. - * - attributes: HTML attributes for the list element. - * - * @see template_preprocess_views_view_list() - */ -#} -{% if attributes -%} - <div{{ attributes }}> -{% endif %} - {% if title %} - <h3>{{ title }}</h3> - {% endif %} - - <{{ list.type }}{{ list.attributes }}> - - {% for row in rows %} - <li{{ row.attributes }}>{{ row.content }}</li> - {% endfor %} - - </{{ list.type }}> - -{% if attributes -%} - </div> -{% endif %} diff --git a/templates/views/views-view-mapping-test.html.twig b/templates/views/views-view-mapping-test.html.twig deleted file mode 100644 index 26d06692967bbab306b00f42cd88b1f862d2e82e..0000000000000000000000000000000000000000 --- a/templates/views/views-view-mapping-test.html.twig +++ /dev/null @@ -1,12 +0,0 @@ -{# -/** - * @file - * Theme override for testing the mapping row style. - * - * Available variables: - * - element: The view content. - * - * @see template_preprocess_views_view_mapping_test() - */ -#} -{{ element }} diff --git a/templates/views/views-view-opml.html.twig b/templates/views/views-view-opml.html.twig deleted file mode 100644 index a48843aea68c23cb233bd1832f6f38155a6f1366..0000000000000000000000000000000000000000 --- a/templates/views/views-view-opml.html.twig +++ /dev/null @@ -1,23 +0,0 @@ -{# -/** - * @file - * Theme override for feed displays that use the OPML style. - * - * Available variables: - * - title: The title of the feed (as set in the view). - * - updated: The modified date of the feed. - * - items: The feed items themselves. - * - * @see template_preprocess_views_view_opml() - */ -#} -<?xml version="1.0" encoding="utf-8" ?> -<opml version="2.0"> - <head> - <title>{{ title }}</title> - <dateModified>{{ updated }}</dateModified> - </head> - <body> - {{ items }} - </body> -</opml> diff --git a/templates/views/views-view-row-opml.html.twig b/templates/views/views-view-row-opml.html.twig deleted file mode 100644 index 3316b1a3d7e9daa5e8fc80055028a7c511d21ef0..0000000000000000000000000000000000000000 --- a/templates/views/views-view-row-opml.html.twig +++ /dev/null @@ -1,12 +0,0 @@ -{# -/** - * @file - * Theme override to display an item in a views OPML feed. - * - * Available variables: - * - attributes: Attributes for outline element. - * - * @see template_preprocess_views_view_row_opml() - */ -#} - <outline{{ attributes }}/> diff --git a/templates/views/views-view-row-rss.html.twig b/templates/views/views-view-row-rss.html.twig deleted file mode 100644 index aee08aee6e27407c9187efe69ec02b92ee8a3b05..0000000000000000000000000000000000000000 --- a/templates/views/views-view-row-rss.html.twig +++ /dev/null @@ -1,30 +0,0 @@ -{# -/** - * @file - * Theme override to display an item in a views RSS feed. - * - * Available variables: - * - title: RSS item title. - * - link: RSS item link. - * - description: RSS body text. - * - item_elements: RSS item elements to be rendered as XML (pubDate, creator, - * guid). - * - * @see template_preprocess_views_view_row_rss() - * - * @ingroup themeable - */ -#} -<item> - <title>{{ title }}</title> - <link>{{ link }}</link> - <description>{{ description }}</description> - {% for item in item_elements -%} - <{{ item.key }}{{ item.attributes -}} - {% if item.value -%} - >{{ item.value }}</{{ item.key }}> - {% else -%} - {{ ' />' }} - {% endif %} - {%- endfor %} -</item> diff --git a/templates/views/views-view-rss.html.twig b/templates/views/views-view-rss.html.twig deleted file mode 100644 index f772d6370c347f3351a54aa3ecc9cd83e18ae0a4..0000000000000000000000000000000000000000 --- a/templates/views/views-view-rss.html.twig +++ /dev/null @@ -1,28 +0,0 @@ -{# -/** - * @file - * Theme override for feed displays that use the RSS style. - * - * Available variables: - * - link: The link to the feed (the view path). - * - namespaces: The XML namespaces (added automatically). - * - title: The title of the feed (as set in the view). - * - description: The feed description (from feed settings). - * - langcode: The language encoding. - * - channel_elements: The formatted channel elements. - * - items: The feed items themselves. - * - * @see template_preprocess_views_view_rss() - */ -#} -<?xml version="1.0" encoding="utf-8" ?> -<rss version="2.0" xml:base="{{ link }}"{{ namespaces }}> - <channel> - <title>{{ title }}</title> - <link>{{ link }}</link> - <description>{{ description }}</description> - <language>{{ langcode }}</language> - {{ channel_elements }} - {{ items }} - </channel> -</rss> diff --git a/templates/views/views-view-summary-unformatted.html.twig b/templates/views/views-view-summary-unformatted.html.twig deleted file mode 100644 index 151734e948eea2fbb1c29261a0c169c1cd49581e..0000000000000000000000000000000000000000 --- a/templates/views/views-view-summary-unformatted.html.twig +++ /dev/null @@ -1,31 +0,0 @@ -{# -/** - * @file - * Theme override for unformatted summary links. - * - * Available variables: - * - rows: The rows contained in this view. - * - url: The URL to this row's content. - * - count: The number of items this summary item represents. - * - separator: A separator between each row. - * - attributes: HTML attributes for a row. - * - active: A flag indicating whether the row is active. - * - options: Flags indicating how each row should be displayed. This contains: - * - count: A flag indicating whether the row's 'count' should be displayed. - * - inline: A flag indicating whether the item should be wrapped in an inline - * or block level HTML element. - * - * @see template_preprocess_views_view_summary_unformatted() - */ -#} -{% for row in rows %} - {{ options.inline ? '<span' : '<div' }} class="views-summary views-summary-unformatted"> - {% if row.separator -%} - {{ row.separator }} - {%- endif %} - <a href="{{ row.url }}"{{ row.attributes.addClass(row.active ? 'is-active')|without('href') }}>{{ row.link }}</a> - {% if options.count %} - ({{ row.count }}) - {% endif %} - {{ options.inline ? '</span>' : '</div>' }} -{% endfor %} diff --git a/templates/views/views-view-summary.html.twig b/templates/views/views-view-summary.html.twig deleted file mode 100644 index 241aa5012d2fc39163e7ae08997685d3cc0a0d3f..0000000000000000000000000000000000000000 --- a/templates/views/views-view-summary.html.twig +++ /dev/null @@ -1,31 +0,0 @@ -{# -/** - * @file - * Theme override to display a list of summary lines. - * - * Available variables: - * - rows: The rows contained in this view. - * Each row contains: - * - url: The summary link URL. - * - link: The summary link text. - * - count: The number of items under this grouping. - * - attributes: HTML attributes to apply to each row. - * - active: A flag indicating whtether the row is active. - * - options: Flags indicating how the summary should be displayed. - * This contains: - * - count: A flag indicating whether the count should be displayed. - * - * @see template_preprocess_views_view_summary() - */ -#} -<div class="item-list"> - <ul class="views-summary"> - {% for row in rows %} - <li><a href="{{ row.url }}"{{ row.attributes.addClass(row.active ? 'is-active')|without('href') }}>{{ row.link }}</a> - {% if options.count %} - ({{ row.count }}) - {% endif %} - </li> - {% endfor %} - </ul> -</div> diff --git a/templates/views/views-view-table.html.twig b/templates/views/views-view-table.html.twig deleted file mode 100644 index 38b24365adc7b0f1f9df2cbaab493a5264b8ef73..0000000000000000000000000000000000000000 --- a/templates/views/views-view-table.html.twig +++ /dev/null @@ -1,131 +0,0 @@ -{# -/** - * @file - * Theme override for displaying a view as a table. - * - * Available variables: - * - attributes: Remaining HTML attributes for the element. - * - class: HTML classes that can be used to style contextually through CSS. - * - title : The title of this group of rows. - * - header: The table header columns. - * - attributes: Remaining HTML attributes for the element. - * - content: HTML classes to apply to each header cell, indexed by - * the header's key. - * - default_classes: A flag indicating whether default classes should be - * used. - * - caption_needed: Is the caption tag needed. - * - caption: The caption for this table. - * - accessibility_description: Extended description for the table details. - * - accessibility_summary: Summary for the table details. - * - rows: Table row items. Rows are keyed by row number. - * - attributes: HTML classes to apply to each row. - * - columns: Row column items. Columns are keyed by column number. - * - attributes: HTML classes to apply to each column. - * - content: The column content. - * - default_classes: A flag indicating whether default classes should be - * used. - * - responsive: A flag indicating whether table is responsive. - * - sticky: A flag indicating whether table header is sticky. - * - * @see template_preprocess_views_view_table() - */ -#} -{% - set classes = [ - 'table', - hover ? 'table-hover', - table_class, - 'views-table', - 'views-view-table', - 'cols-' ~ header|length, - responsive ? 'responsive-enabled', - sticky ? 'sticky-enabled', - ] -%} -<div class="table-responsive col"> -<table{{ attributes.addClass(classes) }}> - {% if caption_needed %} - <caption> - {% if caption %} - {{ caption }} - {% else %} - {{ title }} - {% endif %} - {% if (summary is not empty) or (description is not empty) %} - <details> - {% if summary is not empty %} - <summary>{{ summary }}</summary> - {% endif %} - {% if description is not empty %} - {{ description }} - {% endif %} - </details> - {% endif %} - </caption> - {% endif %} - {% if header %} - <thead class='{{ thead_class }}'> - <tr> - {% for key, column in header %} - {% if column.default_classes %} - {% - set column_classes = [ - 'views-field', - 'views-field-' ~ fields[key], - ] - %} - {% endif %} - <th{{ column.attributes.addClass(column_classes).setAttribute('scope', 'col') }}> - {%- if column.wrapper_element -%} - <{{ column.wrapper_element }}> - {%- if column.url -%} - <a href="{{ column.url }}" title="{{ column.title }}">{{ column.content }}{{ column.sort_indicator }}</a> - {%- else -%} - {{ column.content }}{{ column.sort_indicator }} - {%- endif -%} - </{{ column.wrapper_element }}> - {%- else -%} - {%- if column.url -%} - <a href="{{ column.url }}" title="{{ column.title }}">{{ column.content }}{{ column.sort_indicator }}</a> - {%- else -%} - {{- column.content }}{{ column.sort_indicator }} - {%- endif -%} - {%- endif -%} - </th> - {% endfor %} - </tr> - </thead> - {% endif %} - <tbody> - {% for row in rows %} - <tr{{ row.attributes }}> - {% for key, column in row.columns %} - {% if column.default_classes %} - {% - set column_classes = [ - 'views-field' - ] - %} - {% for field in column.fields %} - {% set column_classes = column_classes|merge(['views-field-' ~ field]) %} - {% endfor %} - {% endif %} - <td{{ column.attributes.addClass(column_classes) }}> - {%- if column.wrapper_element -%} - <{{ column.wrapper_element }}> - {% for content in column.content %} - {{ content.separator }}{{ content.field_output }} - {% endfor %} - </{{ column.wrapper_element }}> - {%- else -%} - {% for content in column.content %} - {{- content.separator }}{{ content.field_output -}} - {% endfor %} - {%- endif %} - </td> - {% endfor %} - </tr> - {% endfor %} - </tbody> -</table> -</div> diff --git a/templates/views/views-view-unformatted--card.html.twig b/templates/views/views-view-unformatted--card.html.twig deleted file mode 100644 index aba58c71b83fd533816b62c9e5d8494c74e3b591..0000000000000000000000000000000000000000 --- a/templates/views/views-view-unformatted--card.html.twig +++ /dev/null @@ -1,23 +0,0 @@ -{# -/** - * @file - * Theme override to display a view of unformatted rows. - * - * Available variables: - * - title: The title of this group of rows. May be empty. - * - rows: A list of the view's row items. - * - attributes: The row's HTML attributes. - * - content: The row's content. - * - view: The view object. - * - default_row_class: A flag indicating whether default classes should be - * used on rows. - * - * @see template_preprocess_views_view_unformatted() - */ -#} -{% if title %} - <h3>{{ title }}</h3> -{% endif %} -{% for row in rows %} - {{ row.content }} -{% endfor %} diff --git a/templates/views/views-view-unformatted.html.twig b/templates/views/views-view-unformatted.html.twig deleted file mode 100644 index bece528c7a69ab9344b460cc66bb25bd2717e793..0000000000000000000000000000000000000000 --- a/templates/views/views-view-unformatted.html.twig +++ /dev/null @@ -1,30 +0,0 @@ -{# -/** - * @file - * Theme override to display a view of unformatted rows. - * - * Available variables: - * - title: The title of this group of rows. May be empty. - * - rows: A list of the view's row items. - * - attributes: The row's HTML attributes. - * - content: The row's content. - * - view: The view object. - * - default_row_class: A flag indicating whether default classes should be - * used on rows. - * - * @see template_preprocess_views_view_unformatted() - */ -#} -{% if title %} - <h3>{{ title }}</h3> -{% endif %} -{% for row in rows %} - {% - set row_classes = [ - default_row_class ? 'views-row', - ] - %} - <div{{ row.attributes.addClass(row_classes) }}> - {{ row.content }} - </div> -{% endfor %} diff --git a/templates/views/views-view.html.twig b/templates/views/views-view.html.twig deleted file mode 100644 index 523ebd1cd0f0656be1a75fb217b36e18f165db74..0000000000000000000000000000000000000000 --- a/templates/views/views-view.html.twig +++ /dev/null @@ -1,95 +0,0 @@ -{# -/** - * @file - * Theme override for a main view template. - * - * Available variables: - * - attributes: Remaining HTML attributes for the element. - * - css_name: A css-safe version of the view name. - * - css_class: The user-specified classes names, if any. - * - header: The optional header. - * - footer: The optional footer. - * - rows: The results of the view query, if any. - * - empty: The content to display if there are no rows. - * - pager: The optional pager next/prev links to display. - * - exposed: Exposed widget form/info to display. - * - feed_icons: Optional feed icons to display. - * - more: An optional link to the next page of results. - * - title: Title of the view, only used when displaying in the admin preview. - * - title_prefix: Additional output populated by modules, intended to be - * displayed in front of the view title. - * - title_suffix: Additional output populated by modules, intended to be - * displayed after the view title. - * - attachment_before: An optional attachment view to be displayed before the - * view content. - * - attachment_after: An optional attachment view to be displayed after the - * view content. - * - dom_id: Unique id for every view being printed to give unique class for - * Javascript. - * - * @see template_preprocess_views_view() - */ -#} -{% - set classes = [ - 'view', - 'view-' ~ id|clean_class, - 'view-id-' ~ id, - 'view-display-id-' ~ display_id, - dom_id ? 'js-view-dom-id-' ~ dom_id, - ] -%} -<div{{ attributes.addClass(classes) }}> - {{ title_prefix }} - {% if title %} - {{ title }} - {% endif %} - {{ title_suffix }} - {% if header %} - <div class="view-header"> - {{ header }} - </div> - {% endif %} - {% if exposed %} - <div class="view-filters"> - {{ exposed }} - </div> - {% endif %} - {% if attachment_before %} - <div class="attachment attachment-before"> - {{ attachment_before }} - </div> - {% endif %} - - {% if rows %} - <div class="view-content row"> - {{ rows }} - </div> - {% elseif empty %} - <div class="view-empty"> - {{ empty }} - </div> - {% endif %} - - {% if pager %} - {{ pager }} - {% endif %} - {% if attachment_after %} - <div class="attachment attachment-after"> - {{ attachment_after }} - </div> - {% endif %} - {% if more %} - {{ more }} - {% endif %} - {% if footer %} - <div class="view-footer"> - {{ footer }} - </div> - {% endif %} - {% if feed_icons %} - <div class="feed-icons"> - {{ feed_icons }} - </div> - {% endif %} -</div>