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