Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / themes / stable / templates / content / mark.html.twig
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     {{ 'New'|t }}
17   {% elseif status is constant('MARK_UPDATED') %}
18     {{ 'Updated'|t }}
19   {% endif %}
20 {% endif %}