Sha256: 89f5c87408baee397c779e49c10478bc00e3841eb5c98eb483ed9f473aea472d

Contents?: true

Size: 379 Bytes

Versions: 1

Compression:

Stored size: 379 Bytes

Contents

<%= @post.template %>
<%= @post.layout %>
<p>
  <b>Title:</b>
  <%= @post.title %>
</p>
<p>
<% @post.contents.each do |f| %>
  <%= raw f.content %>
<% end %>

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


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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
devape_cms-0.1.8 app/views/posts/show.html.erb