Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x

mark.html.twig

Same filename in this branch
  1. 11.1.x core/profiles/demo_umami/themes/umami/templates/classy/content/mark.html.twig
  2. 11.1.x core/themes/stable9/templates/content/mark.html.twig
  3. 11.1.x core/themes/starterkit_theme/templates/content/mark.html.twig
  4. 11.1.x core/themes/claro/templates/classy/content/mark.html.twig

Default theme implementation for a marker for new or updated content.

Available variables:

  • status: Number representing the marker status to display. Use the constants below for comparison:

    • MARK_NEW
    • MARK_UPDATED
    • MARK_READ
2 theme calls to mark.html.twig
HistoryUserTimestamp::render in core/modules/history/src/Plugin/views/field/HistoryUserTimestamp.php
Renders the field.
NodeListBuilder::buildRow in core/modules/node/src/NodeListBuilder.php
Builds a row for an entity in the entity listing.

File

core/modules/system/templates/mark.html.twig

View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for a marker for new or updated content.
  5. *
  6. * Available variables:
  7. * - status: Number representing the marker status to display. Use the constants
  8. * below for comparison:
  9. * - MARK_NEW
  10. * - MARK_UPDATED
  11. * - MARK_READ
  12. *
  13. * @ingroup themeable
  14. */
  15. #}
  16. {% if logged_in %}
  17. {% if status is constant('MARK_NEW') %}
  18. {{ 'New'|t }}
  19. {% elseif status is constant('MARK_UPDATED') %}
  20. {{ 'Updated'|t }}
  21. {% endif %}
  22. {% endif %}

Related topics

Theme system overview
Functions and templates for the user interface that themes can override.
RSS feed
Powered by Drupal