comparison 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
comparison
equal deleted inserted replaced
40:a81fb558f954 41:ca7e3661cda0
1 <% provide :title, 'Show' %>
1 <p id="notice"><%= notice %></p> 2 <p id="notice"><%= notice %></p>
2 3
3 <p> 4 <h1>Paste</h1>
4 <b>Paste:</b>
5 <pre><%= @paste.paste %></pre> 5 <pre><%= @paste.paste %></pre>
6 </p>
7 6
8 <%= link_to 'Raw', paste_path(@paste, :txt) %> | <%= link_to 'New paste based on this', root_path(:base => @paste.id) %> | <%= link_to 'More Paste', root_path %> 7 <ul class="nav nav-pills">
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>
10 <li><%= link_to 'More Paste', root_path %></li>
11 </ul>