Artist: <%= link_to @artist.pretty_name, posts_path(tags: @artist.name), class: tag_class(@artist.tag) %>
<% if @artist.is_banned? && !policy(@artist).can_view_banned? %>
The artist requested removal of this page.
<% else %>
<% if @artist.wiki_page.present? && !@artist.wiki_page.is_deleted? %>
<%= format_text(@artist.wiki_page.body, :disable_mentions => true) %>
<%= link_to "View wiki page", @artist.wiki_page %>
<% end %>
<%= yield %>
<% if @artist.tag.present? && @artist.tag.post_count > 0 %>
<%= render "posts/partials/common/inline_blacklist" %>
<%= render_post_gallery(@artist.tag.posts.limit(8), tags: @artist.name) %>
<% end %>
<% end%>