<% if page.feature %>
<%= link_to raw("
#{page.name}"), page_path(page), remote: true, style: "font-size: 20px;font-weight:800;color:#cc3f44;" %>
( <%= content_tag :span, page.feature.try(:display_name) if page.feature %> )
<% else %>
<%= link_to raw("
#{page.name}"), page_path(page), remote: true, style: "font-size: 20px;font-weight:800;" %>
<% end %>
<%= display_publishable_status(page) if @current_user.super_admin? %>
<%= clear_tag(20) %>
<% if @current_user.super_admin? %>
<% sections = page.sections %>
<% else %>
<% sections = page.sections.published %>
<% end %>
<% sections.order("priority ASC, created_at DESC").each do |section| %>
<%= link_to raw("#{section.name}"), section_path(section), remote: true, style: "font-size: 18px;;color:#4b4b4b;margin-right:20px;" %>
<%= display_manage_links(section, @current_user) %>
<%= display_publishable_links(section) if @current_user.super_admin? %>
<%= clear_tag %>
<% end %>
<% if @current_user.super_admin? %>
<% if page.feature %>
<%= display_manage_links(page, @current_user) if @current_user.super_admin? %>
<% else %>
<%= display_manage_links(page, @current_user) %>
<% end %>
<%= display_publishable_links(page) %>
<% end %>
<%= theme_button('Add a Section', 'plus', dhatu.new_section_path(page_id: page), classes: "btn btn-success btn-xs ml-30 mb-5", btn_type: "success") if @current_user.super_admin? %>
<% end %>