diff --git a/core/modules/taxonomy/taxonomy.module b/core/modules/taxonomy/taxonomy.module index ba82e15..7f74679 100644 --- a/core/modules/taxonomy/taxonomy.module +++ b/core/modules/taxonomy/taxonomy.module @@ -531,7 +531,7 @@ function taxonomy_term_view_multiple(array $terms, $view_mode = 'full', $langcod } /** - * Prepares variables for the taxonomy term templates. + * Prepares variables for taxonomy term templates. * * Default template: taxonomy-term.html.twig. * diff --git a/core/modules/taxonomy/templates/taxonomy-term.html.twig b/core/modules/taxonomy/templates/taxonomy-term.html.twig index 1059793..000f9e1 100644 --- a/core/modules/taxonomy/templates/taxonomy-term.html.twig +++ b/core/modules/taxonomy/templates/taxonomy-term.html.twig @@ -1,10 +1,10 @@ {# /** * @file - * Default theme implementation to display a taxonomy term. + * Default theme implementation to display a term. * * Available variables: - * - url: Direct URL of the current term. + * - URL: Direct url of the current term. * - title: Name of the current term. * - title_prefix: Additional output populated by modules, intended to be * displayed in front of the main title tag that appears in the template. @@ -19,8 +19,7 @@ * - content_attributes: HTML attributes for the title element. * It includes the 'class' information, which includes: * - taxonomy-term: The current template type, i.e., "theming hook". - * - vocabulary-[vocabulary-name]: The vocabulary to which the term belongs to. - * For example, if the term is a "Tag" it would result in "vocabulary-tag". + * - The vocabulary that this term belongs to. * - page: Flag for the full page state. * - term: Full term object. * - view_mode: View mode, e.g. 'full', 'teaser'...