blob: 15547f9c9daca92e2463f901209438a514de0d2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
<% content_for :subnavigation do %>
<%= link_to 'Edit', edit_node_path(@node), :class => "unselected" %>
<%= link_to 'Preview', preview_page_path(@page) %>
<%= link_to 'Revisions', revision_path(params[:id]) %>
<% end %>
<div id="page_editor" class="show_node">
<table id="content">
<tr>
<th class="description"></th>
<th class="content"></th>
</tr>
<tr>
<td class="description">Title</td>
<td><%= @page.title %></td>
</tr>
<tr>
<td class="description">Abstract</td>
<td><%= @page.abstract %></td>
</tr>
<tr>
<td class="description">Body</td>
<td><%= @page.body %></td>
</tr>
<tr>
<td></td>
<td class="right"></td>
</tr>
</table>
</div>
|