comparison app/views/pastes/show.html.erb @ 55:f957ce997ff0

Added basic syntax highlighter.
author Edho Arief <edho@myconan.net>
date Thu, 04 Oct 2012 04:50:22 +0700
parents e9b485638f93
children 285cce9725bf
comparison
equal deleted inserted replaced
54:e8920b00035c 55:f957ce997ff0
1 <% provide :title, 'Show' %> 1 <% provide :title, 'Show' %>
2 <div class="page-header"> 2 <div class="page-header">
3 <h1>Paste</h1> 3 <h1>Paste</h1>
4 </div> 4 </div>
5 <pre><%= @paste.paste %></pre> 5 <pre class="prettyprint linenums"><%= @paste.paste %></pre>
6 6
7 <ul class="nav nav-pills"> 7 <ul class="nav nav-pills">
8 <li><%= link_to 'Raw', paste_path(@paste, :txt) %></li> 8 <li><%= link_to 'Raw', paste_path(@paste, :txt) %></li>
9 <li><%= link_to 'New paste based on this', root_path(:base => @paste.id) %></li> 9 <li><%= link_to 'New paste based on this', root_path(:base => @paste.id) %></li>
10 <li><%= link_to 'More Paste', root_path %></li> 10 <li><%= link_to 'More Paste', root_path %></li>