Mercurial > zeropaste
annotate app/views/pastes/show.html.erb @ 180:dd5a154c17c7
Extracted txt result template to helper.
author | Edho Arief <edho@myconan.net> |
---|---|
date | Fri, 01 Feb 2013 22:57:49 +0700 |
parents | b1aa7865bc7f |
children | b4b7a29b70f6 |
rev | line source |
---|---|
98 | 1 <% provide :title, "Paste ##{@paste.id}" %> |
43
bc088ddb470f
Added page header div for show.
Edho Arief <edho@myconan.net>
parents:
42
diff
changeset
|
2 <div class="page-header"> |
98 | 3 <h1><%= content_for :title %></h1> |
43
bc088ddb470f
Added page header div for show.
Edho Arief <edho@myconan.net>
parents:
42
diff
changeset
|
4 </div> |
100
90b59418828a
Three times more fun with tabs (added plain and markdown tab).
Edho Arief <edho@myconan.net>
parents:
98
diff
changeset
|
5 |
179
b1aa7865bc7f
Added paste id data to markup.
Edho Arief <edho@myconan.net>
parents:
150
diff
changeset
|
6 <div id="paste-show" class="tabbable" data-id="<%= @paste.id %>"> |
125
64f73525503b
Use button toolbar instead of nav.
Edho Arief <edho@myconan.net>
parents:
115
diff
changeset
|
7 <div class="btn-toolbar"> |
64f73525503b
Use button toolbar instead of nav.
Edho Arief <edho@myconan.net>
parents:
115
diff
changeset
|
8 <div id="paste-mode" class="btn-group" data-toggle="buttons-radio"> |
64f73525503b
Use button toolbar instead of nav.
Edho Arief <edho@myconan.net>
parents:
115
diff
changeset
|
9 <%= link_to 'Plain', '#plain', :data => { :toggle => 'tab' }, :class => 'btn active' %> |
64f73525503b
Use button toolbar instead of nav.
Edho Arief <edho@myconan.net>
parents:
115
diff
changeset
|
10 <%= link_to 'Highlight', '#highlight', :data => { :toggle => 'tab' }, :class => 'btn' %> |
64f73525503b
Use button toolbar instead of nav.
Edho Arief <edho@myconan.net>
parents:
115
diff
changeset
|
11 <%= link_to 'Markdown', '#markdown', :data => { :toggle => 'tab' }, :class => 'btn' %> |
64f73525503b
Use button toolbar instead of nav.
Edho Arief <edho@myconan.net>
parents:
115
diff
changeset
|
12 </div> |
64f73525503b
Use button toolbar instead of nav.
Edho Arief <edho@myconan.net>
parents:
115
diff
changeset
|
13 <div class="btn-group" id="paste-resize"> |
64f73525503b
Use button toolbar instead of nav.
Edho Arief <edho@myconan.net>
parents:
115
diff
changeset
|
14 <a class="btn dropdown-toggle" data-toggle="dropdown" href="#"> |
64f73525503b
Use button toolbar instead of nav.
Edho Arief <edho@myconan.net>
parents:
115
diff
changeset
|
15 Width: auto |
64f73525503b
Use button toolbar instead of nav.
Edho Arief <edho@myconan.net>
parents:
115
diff
changeset
|
16 <span class="caret"></span> |
64f73525503b
Use button toolbar instead of nav.
Edho Arief <edho@myconan.net>
parents:
115
diff
changeset
|
17 </a> |
64f73525503b
Use button toolbar instead of nav.
Edho Arief <edho@myconan.net>
parents:
115
diff
changeset
|
18 <ul class="dropdown-menu"> |
64f73525503b
Use button toolbar instead of nav.
Edho Arief <edho@myconan.net>
parents:
115
diff
changeset
|
19 <li><a href="#" data-size="auto">auto</a></li> |
64f73525503b
Use button toolbar instead of nav.
Edho Arief <edho@myconan.net>
parents:
115
diff
changeset
|
20 <li><a href="#" data-size="560px">560px</a></li> |
64f73525503b
Use button toolbar instead of nav.
Edho Arief <edho@myconan.net>
parents:
115
diff
changeset
|
21 <li><a href="#" data-size="760px">760px</a></li> |
64f73525503b
Use button toolbar instead of nav.
Edho Arief <edho@myconan.net>
parents:
115
diff
changeset
|
22 <li><a href="#" data-size="960px">960px</a></li> |
64f73525503b
Use button toolbar instead of nav.
Edho Arief <edho@myconan.net>
parents:
115
diff
changeset
|
23 </ul> |
64f73525503b
Use button toolbar instead of nav.
Edho Arief <edho@myconan.net>
parents:
115
diff
changeset
|
24 </div> |
64f73525503b
Use button toolbar instead of nav.
Edho Arief <edho@myconan.net>
parents:
115
diff
changeset
|
25 </div> |
115
546381cf83c2
auto sounds better than full.
Edho Arief <edho@myconan.net>
parents:
114
diff
changeset
|
26 <div id="paste" data-mode="plain" data-width="auto" class="tab-content"> |
100
90b59418828a
Three times more fun with tabs (added plain and markdown tab).
Edho Arief <edho@myconan.net>
parents:
98
diff
changeset
|
27 <div class="tab-pane active" id="plain"> |
90b59418828a
Three times more fun with tabs (added plain and markdown tab).
Edho Arief <edho@myconan.net>
parents:
98
diff
changeset
|
28 <pre><%= @paste.paste %></pre> |
90b59418828a
Three times more fun with tabs (added plain and markdown tab).
Edho Arief <edho@myconan.net>
parents:
98
diff
changeset
|
29 </div> |
90b59418828a
Three times more fun with tabs (added plain and markdown tab).
Edho Arief <edho@myconan.net>
parents:
98
diff
changeset
|
30 <div class="tab-pane" id="highlight"> |
90b59418828a
Three times more fun with tabs (added plain and markdown tab).
Edho Arief <edho@myconan.net>
parents:
98
diff
changeset
|
31 <pre class="prettyprint linenums"></pre> |
90b59418828a
Three times more fun with tabs (added plain and markdown tab).
Edho Arief <edho@myconan.net>
parents:
98
diff
changeset
|
32 </div> |
90b59418828a
Three times more fun with tabs (added plain and markdown tab).
Edho Arief <edho@myconan.net>
parents:
98
diff
changeset
|
33 <div class="tab-pane" id="markdown"> |
105 | 34 <div class="well"></div> |
100
90b59418828a
Three times more fun with tabs (added plain and markdown tab).
Edho Arief <edho@myconan.net>
parents:
98
diff
changeset
|
35 </div> |
90b59418828a
Three times more fun with tabs (added plain and markdown tab).
Edho Arief <edho@myconan.net>
parents:
98
diff
changeset
|
36 </div> |
90b59418828a
Three times more fun with tabs (added plain and markdown tab).
Edho Arief <edho@myconan.net>
parents:
98
diff
changeset
|
37 </div> |
2 | 38 |
107 | 39 <div> |
40 <ul class="nav nav-pills"> | |
41 <li><%= link_to 'Raw', paste_path(@paste, :txt) %></li> | |
42 <li><%= link_to 'New paste based on this', root_path(:base => @paste.id) %></li> | |
43 <li><%= link_to 'More Paste', root_path %></li> | |
44 </ul> | |
45 </div> |