[Artists] Turn domain names into search links (#770)

This commit is contained in:
Cinder 2024-10-22 15:05:45 -07:00 committed by GitHub
parent 50757a1e3b
commit 2716ba29ca
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -17,7 +17,11 @@
<li><strong>Domains</strong></li> <li><strong>Domains</strong></li>
<ul> <ul>
<% artist.domains.each do |url, count| %> <% artist.domains.each do |url, count| %>
<li><%= favicon_for_link("https://#{url}") %> <%= url %>: <%= count %></li> <li>
<%= favicon_for_link("https://#{url}") %>
<%= link_to(url, posts_path(tags: "#{artist.name} source:*#{url}*")) %>:
<%= count %>
</li>
<% end %> <% end %>
</ul> </ul>
<% end %> <% end %>