%= content_for :body_class, "custom-page" %>
<% provide :title do %><%= @custom_page.title %><% end %>
<%= @custom_page.title %>
<% if @custom_page.subtitle.present? %>
<%= @custom_page.subtitle%>
<% end %>
<%= safe_html_with_links AdminWYSIWYGSanitizer.new.sanitize(@custom_page.content) %>
<% if @custom_page.print_content_flag %>
<%= render '/shared/print' %>
<% end %>
<% if @cards.any? %>
<%= render "cards" %>
<% end %>