Files
nairobi/app/views/pages/custom_page.html.erb
2019-01-18 09:54:43 -05:00

28 lines
678 B
Plaintext

<%= content_for :body_class, "custom-page" %>
<% provide :title do %><%= @custom_page.title %><% end %>
<div class="row margin-top">
<div class="small-12 medium-9 column">
<h1><%= @custom_page.title %></h1>
<% if @custom_page.subtitle.present? %>
<h2><%= @custom_page.subtitle%></h2>
<% end %>
<%= safe_html_with_links AdminWYSIWYGSanitizer.new.sanitize(@custom_page.content) %>
</div>
<% if @custom_page.print_content_flag %>
<div class="small-12 medium-3 column">
<%= render '/shared/print' %>
</div>
<% end %>
<% if @cards.any? %>
<div class="small-12 column">
<%= render "cards" %>
</div>
<% end %>
</div>