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/claro/templates/classy/content/mark.html.twig
  4. 11.1.x core/modules/system/templates/mark.html.twig

Theme override 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/themes/starterkit_theme/templates/content/mark.html.twig

View source
  1. {#
  2. /**
  3. * @file
  4. * Theme override 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. #}
  14. {% if logged_in %}
  15. {% if status is constant('MARK_NEW') %}
  16. <span class="marker">{{ 'New'|t }}</span>
  17. {% elseif status is constant('MARK_UPDATED') %}
  18. <span class="marker">{{ 'Updated'|t }}</span>
  19. {% endif %}
  20. {% endif %}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal