+<%= render_social_share_buttons({
+ :title => @entry.title,
+ :url => diary_entry_url(@entry.user, @entry)
+ }) %>
+
+<div id="comments" class="comments mb-3 overflow-hidden">
+ <div class="row border-bottom border-secondary-subtle">
+ <h2 class="col"><%= t(".discussion") %></h2>
+
+ <% if current_user %>
+ <div class="col-auto">
+ <% if @entry.subscribers.exists?(current_user.id) %>
+ <%= link_to t(".unsubscribe"), diary_entry_unsubscribe_path(@entry.user, @entry), :method => :post, :class => "btn btn-sm btn-primary" %>
+ <% else %>
+ <%= link_to t(".subscribe"), diary_entry_subscribe_path(@entry.user, @entry), :method => :post, :class => "btn btn-sm btn-primary" %>
+ <% end %>
+ </div>
+ <% end %>
+ </div>