% @title = @page.title %>
<%= markup(@page.current_version.body) %>
<%= @page.versions.count == 1 ? "Created" : "Updated" %>
on <%= @page.current_version.created_at.to_s(:long) %>
by <%= link_to_author(@page.current_version.author) %>
<%= link_to("Edit", :controller => "versions", :action => "new") %>
<% if @page.versions.count > 1 %>
|
<%= link_to("Back in time",
version_url(:page_title => @page.title, :version_number => @page.versions.count - 1),
:class => 'navlink') %>
(<%= @page.versions.count - 1 %> older versions)
<% end %>