2024-06-02 05:50:36 +02:00
|
|
|
<h1>
|
|
|
|
<%= @static_page.title %>
|
|
|
|
</h1>
|
|
|
|
<p>
|
2024-06-02 05:50:49 +02:00
|
|
|
Last updated <%= pretty_time(@static_page.updated_at) %>
|
2024-06-02 05:50:36 +02:00
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<%= link to: ~p"/pages/#{@static_page}/history" do %>
|
2024-06-02 05:50:49 +02:00
|
|
|
<i class="fa fa-history"></i> Revision history
|
2024-06-02 05:50:36 +02:00
|
|
|
<% end %>
|
|
|
|
<%= if can?(@conn, :edit, Philomena.StaticPages.StaticPage) do %>
|
|
|
|
<%= link to: ~p"/pages/#{@static_page}/edit" do %>
|
2024-06-02 05:50:49 +02:00
|
|
|
<i class="fa fa-edit"></i> Edit
|
2024-06-02 05:50:36 +02:00
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
</p>
|
|
|
|
<%= @rendered %>
|