<%- if SiteSetting.prioritize_username_in_ux %>
<%= post.user.username %>
<%- if show_name_on_post(post) %>
<%= post.user.name %>
<% end %>
<%- else %>
<%= post.user.name %>
<%- if show_username_on_post(post) %>
<%= post.user.username %>
<% end %>
<%- end %>
<%- if post.user.title.present? %>
<%= post.user.title %>
<% end %>
<%= short_date(post.created_at) %> |