view app/views/pastes/show.html.erb @ 42:c91c994b22b9

Whitespace fix.
author Edho Arief <edho@myconan.net>
date Thu, 04 Oct 2012 02:12:47 +0700
parents ca7e3661cda0
children bc088ddb470f
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>