<%= csrf_meta_tags %>

Pages

<%= link_to "New page", new_admin_page_path, class: "ml-auto crayons-btn crayons-btn--s" %>
<% @pages.each do |page| %>
<% if page.landing_page? %> <%= inline_svg_tag("lock.svg", class: "crayons-icon", aria: true, title: "Current locked screen") %> <% end %> <%= link_to page.title, page.path %> <%= link_to "Edit", edit_admin_page_path(page.id), class: "ml-auto crayons-btn crayons-btn--s crayons-btn--secondary" %>
<% end %>
<% if !@code_of_conduct || !@privacy || !@terms %>

Override defaults

Note: Proceed with caution. When you edit any of the following pages, it will diverge from the original Forem version and you will no longer receive updates. You will see your updated version in the section above.
<% if !@code_of_conduct %>
<%= link_to "Code of Conduct", code_of_conduct_path %> <%= link_to "Override", new_admin_page_path(slug: "code-of-conduct"), class: "ml-auto crayons-btn crayons-btn--s crayons-btn--danger" %>
<% end %> <% if !@privacy %>
<%= link_to "Privacy Policy", privacy_path %> <%= link_to "Override", new_admin_page_path(slug: "privacy"), class: "ml-auto crayons-btn crayons-btn--s crayons-btn--danger" %>
<% end %> <% if !@terms %>
<%= link_to "Terms of Use", terms_path %> <%= link_to "Override", new_admin_page_path(slug: "terms"), class: "ml-auto crayons-btn crayons-btn--s crayons-btn--danger" %>
<% end %>
<% else %>
Note: You have overridden the code of conduct, privacy policy and terms of use. You will no longer receive updates on these pages from the Forem team.
<% end %>