This repository has been archived on 2024-08-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
redstoner.com/app/views/info/show.html.erb
2014-10-02 23:02:52 +02:00

16 lines
443 B
Plaintext

<%= link_to "Info", info_index_path %> → <%= @info.title %>
<% if mod? %>
<%= link_to "Edit Info", edit_info_path(@info), class: "btn blue right" %>
<% end %>
<div class="clear"></div>
<h1 class="info-title"><%= title @info.title %></h1>
<div class="post">
<%= render_trusted_md(@info.content).html_safe %>
</div>
<div class="info-suggestions center">
<%= link_to "« #{@prev}", @prev %>
<%= link_to "#{@next} »", @next %>
</div>