16 lines
859 B
Text
16 lines
859 B
Text
<span class="color-base-30 px-2 m:pl-0" role="presentation">•</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>
|