<% if @article.published? %> <%= render partial: "articles/reaction_button", locals: { category: :like, description: "Heart", image_path: "heart.svg", image_active_path: "heart-filled.svg" } %> <%= render partial: "articles/reaction_button", locals: { category: :unicorn, description: "Unicorn", image_path: "unicorn.svg", image_active_path: "unicorn-filled.svg" } %> <%= render partial: "articles/reaction_button", locals: { category: :readinglist, description: "Reading list", image_path: "save.svg", image_active_path: "save-filled.svg" } %> <% end %>
<%= inline_svg_tag("copy.svg", aria: true, id: "article-copy-icon", class: "crayons-icon mx-2 shrink-0", title: "Notifications") %>
Share to Twitter Share to LinkedIn Share to Reddit Share to Hacker News Share to Facebook Report Abuse
<% if !user_signed_in? && @article.body_markdown.size > 900 %> <% cache("below-article-html-variant-#{rand(20)}", expires_in: 8.hours) do %> <% @html_variant = HtmlVariant.find_for_test(@article.cached_tag_list_array, "article_show_below_article_cta") %> <% if @html_variant %>
<%= @html_variant.html.html_safe %>
<% end %> <% end %> <% end %>