<%= ts("%{title} skin by %{creator}", title: @skin.title, creator: skin_author_link(@skin)).html_safe %>
<%= skin_preview_display(@skin) %>
<% if session[:site_skin] || (logged_in? && current_user.preference.skin_id != AdminSetting.default_skin_id) %>
- <%= render "revert_skin_form" %>
<% end %>
<% # If this is your personal skin, show My links; otherwise, show Public links %>
<% if logged_in? && current_user == @skin.author %>
- <%= my_site_skins_link %>
- <%= my_work_skins_link %>
<% else %>
- <%= public_site_skins_link %>
- <%= public_work_skins_link %>
<% end %>
<%= @skin.description.blank? ? ts('(No Description Provided)') : raw(sanitize_field(@skin, :description)) %>
- <%= ts('Role:') %>
- <%= @skin.role %>
- <%= ts('Media:') %>
- <%= @skin.get_media %>
- <%= ts('Condition:') %>
-
<% unless @skin.ie_condition.present? || @skin.unusable? %>Normal<% end %>
<% if @skin.ie_condition.present? %>
<%= @skin.ie_condition %>
<% end %>
<% if @skin.unusable? %>Parent only<% end %>