1 <% content_for :head do %>
2 <%= javascript_include_tag "social_share_button" %>
5 <% content_for :heading do %>
7 <div class="col-sm-auto">
8 <%= user_image @entry.user %>
11 <h1><%= link_to t(".user_title", :user => @entry.user.display_name), :action => :index %></h1>
12 <p><%= rss_link_to :action => :rss, :display_name => @entry.user.display_name %></p>
18 <%= render_social_share_buttons({
19 :title => @entry.title,
20 :url => diary_entry_url(@entry.user, @entry)
23 <div id="comments" class="comments mb-3 overflow-hidden">
24 <div class="row border-bottom border-secondary-subtle">
25 <h2 class="col"><%= t(".discussion") %></h2>
28 <div class="col-auto">
29 <% if @entry.subscribers.exists?(current_user.id) %>
30 <%= link_to t(".unsubscribe"), diary_entry_unsubscribe_path(@entry.user, @entry), :method => :post, :class => "btn btn-sm btn-primary" %>
32 <%= link_to t(".subscribe"), diary_entry_subscribe_path(@entry.user, @entry), :method => :post, :class => "btn btn-sm btn-primary" %>
38 <%= render :partial => "diary_comment", :collection => @comments %>
43 <h3 id="newcomment"><%= t ".leave_a_comment" %></h3>
45 <%= bootstrap_form_for @entry.comments.new, :url => comment_diary_entry_path(@entry.user, @entry) do |f| %>
46 <%= f.richtext_field :body, :cols => 80, :rows => 20, :hide_label => true %>
50 <h3 id="newcomment"><%= t(".login_to_leave_a_comment_html", :login_link => link_to(t(".login"), login_path(:referer => request.fullpath))) %></h3>
54 <% content_for :auto_discovery_link_tag do -%>
55 <%= auto_discovery_link_tag :rss, :action => :rss, :display_name => @entry.user.display_name %>