Files
redux-scraper/app/views/domain/has_description_html/_external_link.html.erb
2025-08-12 21:33:40 +00:00

14 lines
406 B
Plaintext

<span class="inline-block items-center gap-1 text-slate-500 hover:text-slate-700">
<%= link_to(
local_assigns[:url],
target: "_blank",
rel: "noopener noreferrer nofollow",
class: "hover:underline decoration-dotted",
) do %>
<i class="fa-solid fa-external-link-alt"></i>
<span class="text-blue-500">
<%= local_assigns[:link_text] %>
</span>
<% end %>
</span>