bibcite-contributor.html.twig in Bibliography & Citation 2.0.x
Same filename and directory in other branches
bibcite_contributor.html.twig Default theme implementation to present Contributor data.
Available variables:
- content: A list of content items. Use 'content' to print all content, or
- attributes: HTML attributes for the container element.
- bibcite_contributor: The contributor object.
- view_mode: View mode.
See also
File
modules/bibcite_entity/templates/bibcite-contributor.html.twigView source
- {#
- /**
- * @file bibcite_contributor.html.twig
- * Default theme implementation to present Contributor data.
- *
- * Available variables:
- * - content: A list of content items. Use 'content' to print all content, or
- * - attributes: HTML attributes for the container element.
- * - bibcite_contributor: The contributor object.
- * - view_mode: View mode.
- *
- * @see template_preprocess_bibcite_contributor()
- *
- * @ingroup themeable
- */
- #}
- <div{{ attributes }}>
- {% if content %}
- {{- content -}}
- {% endif %}
- </div>