<% 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 %> post<%= posts.length === 1 ? '' : 's' %> on this site <% if (totalPosts > posts.length) { %> · <%= totalPosts %> total <% } %> <% if (author.created_at) { %> · joined <%= 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) { %>

No posts on this site yet.

<% } else { %>

Posts

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

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

    <% if (p.excerpt) { %>

    <%= p.excerpt %>

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