<%= @post.template %> <%= @post.layout %>

Title: <%= @post.title %>

<% @post.contents.each do |f| %> <%= raw f.content %> <% end %>

Parent: <% if @post.parent %> <%= @post.parent.title %> <% end %>

<% if (current_admin) %> <%= link_to 'Edit', edit_admin_post_path(@post) %> | <% end %> <%= link_to 'Back', admin_posts_path %>