<%- if show_username_on_post(post) %>
<%= post.user.username %>
<% end %>
<%- if show_name_on_post(post) %>
<%= post.user.name %>
<% end %>
<%- if post.user.title.present? %>
<%= post.user.title %>
<% end %>
<%= l post.created_at, format: :short_no_year %> |