<% if (author.avatar_url) { %> <% } else { %> <%= author.username.charAt(0).toUpperCase() %> <% } %>

<%= author.username %>

<% if (author.role === 'god') { %> god <% } else if (author.role === 'admin') { %> admin <% } %> <% if (author.bio) { %>

<%= author.bio %>

<% } %>

<%= posts.length %> <%= posts.length === 1 ? t('pusr.post_one') : t('pusr.post_many') %> <%= t('pusr.on_this_site') %> <% if (totalPosts > posts.length) { %> · <%= t('pusr.total', { n: totalPosts }) %> <% } %> <% if (author.created_at) { %> · <%= t('pusr.joined', { date: formatDate(author.created_at) }) %> <% } %>

<% if (user && user.id !== author.id && site && site.enable_prutter && (typeof tenancy !== 'undefined' && tenancy === 'hub') && (typeof premiumUnlocked === 'undefined' || premiumUnlocked)) { %> <% } %>
<% if (!posts.length) { %>

<%= t('pusr.empty') %>

<% } else { %>

<%= t('pusr.posts_heading') %>

    <% posts.forEach(function(p) { %>
  1. <% if (p.cover_image_url) { %> <% } %>

    <%= p.title || t('pusr.untitled') %>

    <% if (p.excerpt) { %>

    <%= p.excerpt %>

    <% } %>
  2. <% }); %>
<% } %>