view_page.rhtml 328 Bytes
<h1><%= @page.title %></h2>

<% if @page.parent && !@page.parent.full_path.blank? %>
  <%= link_to_document(@page.parent, _('Up')) %>
  <hr/>
<% end %>

<%= @page.to_html %>

<% unless @page.children.empty? %>
  <hr/>
  <ul>
  <% @page.children.each do |item| %>
    <li><%= link_to_document(item) %></li>
  <% end %>
<% end %>