Files
nairobi/app/views/topics/_topic.html.erb
taitus a32e249919 Remove   after icon-comments
At some other time we will try to remove all the  

For now we start with what we added after the comments icon.
2022-08-19 14:25:30 +02:00

20 lines
631 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">
<span class="comments-count">
<%= link_to t("community.show.topic.comments", count: topic.comments_count),
community_topic_path(@community, topic, anchor: "comments") %>
</span>
<span class="bullet">&nbsp;&bull;&nbsp;</span>
<%= I18n.l topic.created_at.to_date %>
<span class="bullet">&nbsp;&bull;&nbsp;</span>
<%= topic.author.name %>
</p>
</div>
</div>