group--default.html.twig in Open Social 8
Same filename and directory in other branches
- 8.9 themes/socialbase/templates/group/group--default.html.twig
- 8.2 themes/socialbase/templates/group/group--default.html.twig
- 8.3 themes/socialbase/templates/group/group--default.html.twig
- 8.4 themes/socialbase/templates/group/group--default.html.twig
- 8.5 themes/socialbase/templates/group/group--default.html.twig
- 8.6 themes/socialbase/templates/group/group--default.html.twig
- 8.7 themes/socialbase/templates/group/group--default.html.twig
- 8.8 themes/socialbase/templates/group/group--default.html.twig
Default theme implementation to display a group.
Available variables:
- group: The group 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 group.delete) will result in an exception.
- label: The title of the group.
- content: All group 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.
- url: Direct URL of the current group.
- attributes: HTML attributes for the containing element.
The attributes.class element may contain one or more of the following
classes:
- group: The current template type (also known as a "theming hook").
- group--[type]: The current group type. For example, if the group is a "Classroom" it would result in "group--classroom". Note that the machine name will often be in a short form of the human readable label.
- group--[view_mode]: The View Mode of the group; for example, a teaser would result in: "group--teaser", and full: "group--full".
- 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.
- view_mode: View mode; for example, "teaser" or "full".
- page: Flag for the full page state. Will be true if view_mode is 'full'.
See also
File
themes/socialbase/templates/group/group--default.html.twigView source
- {#
- /**
- * @file
- * Default theme implementation to display a group.
- *
- * Available variables:
- * - group: The group 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 group.delete) will result in an exception.
- * - label: The title of the group.
- * - content: All group 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.
- * - url: Direct URL of the current group.
- * - attributes: HTML attributes for the containing element.
- * The attributes.class element may contain one or more of the following
- * classes:
- * - group: The current template type (also known as a "theming hook").
- * - group--[type]: The current group type. For example, if the group is a
- * "Classroom" it would result in "group--classroom". Note that the machine
- * name will often be in a short form of the human readable label.
- * - group--[view_mode]: The View Mode of the group; for example, a
- * teaser would result in: "group--teaser", and full: "group--full".
- * - 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.
- * - view_mode: View mode; for example, "teaser" or "full".
- * - page: Flag for the full page state. Will be true if view_mode is 'full'.
- *
- * @see template_preprocess_group()
- *
- * @ingroup themeable
- */
- #}
- {% if content.field_group_description|render %}
- <div{{ attributes.addClass('card') }}>
- <div{{ content_attributes.addClass('card__body body-text') }}>
- {{ content.field_group_description }}
- </div>
- </div>
- {% endif %}