<% page_title "#{@artist.pretty_name.titleize} | Artist Profile" %> <%= render "secondary_links" %>

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 %>

Recent Posts <%= link_to "ยป", posts_path(tags: @artist.name) %>

<%= render "posts/partials/common/inline_blacklist" %>
<%= post_previews_html(@artist.tag.posts.limit(8), tags: @artist.name) %>
<% end %> <% end%>