notebook/app/views/thredded/posts_common/_header.html.erb
2022-12-06 16:25:13 -08:00

10 lines
345 B
Plaintext

<header>
<div>
<%= image_tag post.avatar_url, class: 'thredded--post--avatar mt-8' if post.user %>
</div>
<h2 class="thredded--post--user"><%= user_link post.user %></h2>
<a href="<%= post.permalink_path %>" rel="nofollow" class="thredded--link thredded--post--created-at right">
<%= time_ago post.created_at %>
</a>
</header>