Remove all the translations that are left over after having unified them in the component.
20 lines
580 B
Plaintext
20 lines
580 B
Plaintext
<div id="<%= dom_id(topic) %>" class="panel column">
|
|
|
|
<div class="small-12 medium-9 column">
|
|
|
|
<h3><%= link_to topic.title, community_topic_path(@community, topic) %></h3>
|
|
|
|
<p class="topic-info">
|
|
<%= render Shared::CommentsCountComponent.new(
|
|
topic.comments_count,
|
|
url: community_topic_path(@community, topic, anchor: "comments")
|
|
) %>
|
|
<span class="bullet"> • </span>
|
|
<%= I18n.l topic.created_at.to_date %>
|
|
<span class="bullet"> • </span>
|
|
<%= topic.author.name %>
|
|
</p>
|
|
|
|
</div>
|
|
</div>
|