forum-icon.html.twig in Zircon Profile 8
Same filename in this branch
Same filename and directory in other branches
Default theme implementation to display a status icon for a forum post.
Available variables:
- attributes: HTML attributes to be applied to the wrapper element.
- class: HTML classes that determine which icon to display. May be one of 'hot', 'hot-new', 'new', 'default', 'closed', or 'sticky'.
- title: Text alternative for the forum icon.
- icon_title: Text alternative for the forum icon, same as above.
- new_posts: '1' when this topic contains new posts, otherwise '0'.
- first_new: '1' when this is the first topic with new posts, otherwise '0'.
- icon_status: Indicates which status icon should be used.
See also
1 theme call to forum-icon.html.twig
- template_preprocess_forums in core/
modules/ forum/ forum.module - Prepares variables for forums templates.
File
core/modules/forum/templates/forum-icon.html.twigView source
- {#
- /**
- * @file
- * Default theme implementation to display a status icon for a forum post.
- *
- * Available variables:
- * - attributes: HTML attributes to be applied to the wrapper element.
- * - class: HTML classes that determine which icon to display. May be one of
- * 'hot', 'hot-new', 'new', 'default', 'closed', or 'sticky'.
- * - title: Text alternative for the forum icon.
- * - icon_title: Text alternative for the forum icon, same as above.
- * - new_posts: '1' when this topic contains new posts, otherwise '0'.
- * - first_new: '1' when this is the first topic with new posts, otherwise '0'.
- * - icon_status: Indicates which status icon should be used.
- *
- * @see template_preprocess_forum_icon()
- *
- * @ingroup themeable
- */
- #}
- <div{{ attributes }}>
- {% if first_new -%}
- <a id="new"></a>
- {%- endif %}
- <span class="visually-hidden">{{ icon_title }}</span>
- </div>