view app/views/pastes/show.html.erb @ 99:e0e99705e79d

Use gem for bootstrap instead of self-vendoring it.
author Edho Arief <edho@myconan.net>
date Mon, 12 Nov 2012 09:44:44 +0700
parents 58aa32120b54
children 90b59418828a
line wrap: on
line source

<% provide :title, "Paste ##{@paste.id}" %>
<% @skip_csrf = true %>
<div class="page-header">
  <h1><%= content_for :title %></h1>
</div>
<pre class="prettyprint linenums"><%= @paste.paste.gsub(/^$/, ' ') %></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>