mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-12-02 23:57:59 +01:00
21 lines
451 B
Text
21 lines
451 B
Text
|
<h1>
|
||
|
<%= @static_page.title %>
|
||
|
</h1>
|
||
|
<p>
|
||
|
Last updated
|
||
|
<%= pretty_time(@static_page.updated_at) %>
|
||
|
</p>
|
||
|
<p>
|
||
|
<%= link to: ~p"/pages/#{@static_page}/history" do %>
|
||
|
<i class="fa fa-history"></i>
|
||
|
Revision history
|
||
|
<% end %>
|
||
|
<%= if can?(@conn, :edit, Philomena.StaticPages.StaticPage) do %>
|
||
|
<%= link to: ~p"/pages/#{@static_page}/edit" do %>
|
||
|
<i class="fa fa-edit"></i>
|
||
|
Edit
|
||
|
<% end %>
|
||
|
<% end %>
|
||
|
</p>
|
||
|
<%= @rendered %>
|