docbrown/app/views/comments/_comment_date.erb
2023-02-21 18:30:57 -05:00

16 lines
859 B
Text

<span class="color-base-30 px-2 m:pl-0" role="presentation">&bull;</span>
<a href="<%= contextual_comment_url(decorated_comment, article: @article) %>" class="comment-date crayons-link crayons-link--secondary fs-s">
<time datetime="<%= decorated_comment.published_timestamp %>" class=<%= decorated_comment.created_at.year == Time.current.year ? "date-no-year" : "date-short-year" %>>
<%= decorated_comment.readable_publish_date %>
</time>
<% if decorated_comment.edited_at.present? %>
<span class="hidden m:inline-block"><%=
t("views.comments.edited.text_html",
date: tag.time(decorated_comment.edited_at.strftime(t("time.formats.short")), datetime: decorated_comment.edited_timestamp, class: %w[date-no-year])
)
%></span>
<span class="m:hidden"><%= t("views.comments.edited.short_html") %></span>
<% end %>
</a>