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