view app/views/pastes/show.html.erb @ 58:33b47c2160a3

Use mainline prettify instead of stealing from bootstrap.
author Edho Arief <edho@myconan.net>
date Thu, 04 Oct 2012 06:53:04 +0700
parents f957ce997ff0
children 285cce9725bf
line wrap: on
line source

<% provide :title, 'Show' %>
<div class="page-header">
  <h1>Paste</h1>
</div>
<pre class="prettyprint linenums"><%= @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>