<%= 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 { %><%= t('notif.replied') %><% } %>
<% if (n.post_slug) { %>
<%= n.post_title || n.post_slug %><% } %>
<% if (n.type === 'reply' && n.content) { %>
<%- n.content %>
<% } %>