socialbase-1.1.0/templates/activity/activity--notification-archive.html.twig
templates/activity/activity--notification-archive.html.twig
{#
/**
* @file activity.html.twig
* Default theme implementation to present Activity data.
*
* This template is used when viewing Activity pages.
*
*
* Available variables:
* - content: A list of content items. Use 'content' to print all content, or
* - attributes: HTML attributes for the container element.
*
* @see template_preprocess_activity()
*
* @ingroup themeable
*/
#}
<div class="list-item list-item--link {{ status_class }}">
<a href="{{ full_url }}" class="list-item__avatar list-item__avatar--medium"title="{% trans %} profile avatar {% endtrans %}">
{% if actor %}
{{- actor -}}
{% endif %}
</a>
<a href="{{ full_url }}" class="list-item__text"title="{% trans %} profile message {% endtrans %}">
{% if content %}
{{- content -}}
{% endif %}
<span class="text-muted">{{ date }}</span>
</a>
</div>
