rdrew
2 weeks ago
5 changed files with 244 additions and 3 deletions
@ -0,0 +1,3 @@
|
||||
<div class="form-class"> |
||||
{{ form }} |
||||
</div> |
@ -0,0 +1,80 @@
|
||||
{# |
||||
/** |
||||
* @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 }}> |
||||
{% 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 %} |
@ -0,0 +1,64 @@
|
||||
{# |
||||
/** |
||||
* @file |
||||
* Theme override for 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() |
||||
*/ |
||||
#} |
||||
|
||||
{% |
||||
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 }}> |
||||
{% 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 %} |
@ -0,0 +1,53 @@
|
||||
{# |
||||
/** |
||||
* @file |
||||
* Theme override to display all the fields in a row. |
||||
* |
||||
* Available variables: |
||||
* - view: The view in use. |
||||
* - fields: A list of fields, each one contains: |
||||
* - content: The output of the field. |
||||
* - raw: The raw data for the field, if it exists. This is NOT output safe. |
||||
* - class: The safe class ID to use. |
||||
* - handler: The Views field handler controlling this field. |
||||
* - inline: Whether or not the field should be inline. |
||||
* - wrapper_element: An HTML element for a wrapper. |
||||
* - wrapper_attributes: List of attributes for wrapper element. |
||||
* - separator: An optional separator that may appear before a field. |
||||
* - label: The field's label text. |
||||
* - label_element: An HTML element for a label wrapper. |
||||
* - label_attributes: List of attributes for label wrapper. |
||||
* - label_suffix: Colon after the label. |
||||
* - element_type: An HTML element for the field content. |
||||
* - element_attributes: List of attributes for HTML element for field content. |
||||
* - has_label_colon: A boolean indicating whether to display a colon after |
||||
* the label. |
||||
* - element_type: An HTML element for the field content. |
||||
* - element_attributes: List of attributes for HTML element for field content. |
||||
* - row: The raw result from the query, with all data it fetched. |
||||
* |
||||
* @see template_preprocess_views_view_fields() |
||||
*/ |
||||
#} |
||||
{{ fields.did_image.content }} |
||||
{% for field in fields -%} |
||||
{{ field.separator }} |
||||
{%- if field.wrapper_element -%} |
||||
<{{ field.wrapper_element }}{{ field.wrapper_attributes }}> |
||||
{%- endif %} |
||||
{%- if field.label -%} |
||||
{%- if field.label_element -%} |
||||
<{{ field.label_element }}{{ field.label_attributes }}>{{ field.label }}{{ field.label_suffix }}</{{ field.label_element }}> |
||||
{%- else -%} |
||||
{{ field.label }}{{ field.label_suffix }} |
||||
{%- endif %} |
||||
{%- endif %} |
||||
{%- if field.element_type -%} |
||||
<{{ field.element_type }}{{ field.element_attributes }}>{{ field.content }}</{{ field.element_type }}> |
||||
{%- else -%} |
||||
{{ field.content }} |
||||
{%- endif %} |
||||
{%- if field.wrapper_element -%} |
||||
</{{ field.wrapper_element }}> |
||||
{%- endif %} |
||||
{%- endfor %} |
Loading…
Reference in new issue