%=content_for :title do%>
<%= @page.name %> | <%=current_site_name%>
<% end %>
<%=content_for :head do%>
<%if !@page.meta_description.blank?%>
<%end%>
<%end%>
<%if !@inline.blank?%>
<%=render :inline => @inline%>
<%end%>
<%@page.spud_page_partials.each do |page_partial|%>
<%if(page_partial.name.match(/^body$/i) && Spud::Cms.yield_body_as_content_block == false)%>
<%=page_partial.content_processed.html_safe%>
<%else%>
<%=content_for page_partial.symbol_name.to_sym do%>
<%=page_partial.content_processed.html_safe%>
<%end%>
<%end%>
<%end%>