view app/views/pastes/show.html.erb @ 41:ca7e3661cda0

Better styled show paste.
author Edho Arief <edho@myconan.net>
date Thu, 04 Oct 2012 02:12:26 +0700
parents a81fb558f954
children c91c994b22b9
line wrap: on
line source

<% provide :title, 'Show' %>
<p id="notice"><%= notice %></p>

  <h1>Paste</h1>
  <pre><%= @paste.paste %></pre>

<ul class="nav nav-pills">
  <li><%= link_to 'Raw', paste_path(@paste, :txt) %></li>
  <li><%= link_to 'New paste based on this', root_path(:base => @paste.id) %></li>
  <li><%= link_to 'More Paste', root_path %></li>
</ul>