<%= n.name || n.handle %>
<% if (n.handle && n.name) { %>
<%= n.handle %><% } %>
<% if (n.created_at) { %>
<%= formatDateTime(n.created_at) %><% } %>
<% if (n.type === 'follow') { %><%= t('notif.followed') %>
<% } else if (n.type === 'like') { %><%= t('notif.liked') %>
<% } else if (n.type === 'announce') { %><%= t('notif.boosted') %>
<% } else if (n.type === 'report') { %><%= t('notif.reported') %>
<% } else if (n.type === 'mention') { %><%= t('notif.mentioned') %>
<% } else { %><%= t('notif.replied') %><% } %>
<% if (n.post_slug) { %>
<%= n.post_title || n.post_slug %><% } %>
<% if (n.type === 'mention' && n.note_url) { %>
<%= t('tl.view_original') %><% } %>
<% if (n.type === 'report') { %>
<% if (n.content) { %>
<%= n.content %>
<% } else { %>
<%= t('notif.report_noreason') %>
<% } %>
<% if (n.objects && n.objects.length) { %>
<% } %>
<% } else if ((n.type === 'reply' || n.type === 'mention') && n.content) { %>
<%- n.content %>
<% } %>