Mercurial > zeropaste
annotate app/views/pastes/show.html.erb @ 114:b72f99d7b8cf
Dynamic url based on options selected.
Yes, I'm having too much fun.
author | Edho Arief <edho@myconan.net> |
---|---|
date | Mon, 12 Nov 2012 13:31:18 +0700 |
parents | 2b1041e8c35e |
children | 546381cf83c2 |
rev | line source |
---|---|
98 | 1 <% provide :title, "Paste ##{@paste.id}" %> |
90
d100218b96c9
Disables csrf for pastes/show.
Edho Arief <edho@myconan.net>
parents:
60
diff
changeset
|
2 <% @skip_csrf = true %> |
43
bc088ddb470f
Added page header div for show.
Edho Arief <edho@myconan.net>
parents:
42
diff
changeset
|
3 <div class="page-header"> |
98 | 4 <h1><%= content_for :title %></h1> |
43
bc088ddb470f
Added page header div for show.
Edho Arief <edho@myconan.net>
parents:
42
diff
changeset
|
5 </div> |
100
90b59418828a
Three times more fun with tabs (added plain and markdown tab).
Edho Arief <edho@myconan.net>
parents:
98
diff
changeset
|
6 |
90b59418828a
Three times more fun with tabs (added plain and markdown tab).
Edho Arief <edho@myconan.net>
parents:
98
diff
changeset
|
7 <div class="tabbable"> |
103
a8768ad51926
Allows hash-based onload tab switch.
Edho Arief <edho@myconan.net>
parents:
101
diff
changeset
|
8 <ul id="paste-tabs" class="nav nav-tabs"> |
100
90b59418828a
Three times more fun with tabs (added plain and markdown tab).
Edho Arief <edho@myconan.net>
parents:
98
diff
changeset
|
9 <li class="active"><%= link_to 'Plain', '#plain', :data => { :toggle => 'tab' } %></li> |
90b59418828a
Three times more fun with tabs (added plain and markdown tab).
Edho Arief <edho@myconan.net>
parents:
98
diff
changeset
|
10 <li><%= link_to 'Highlight', '#highlight', :data => { :toggle => 'tab' } %></li> |
90b59418828a
Three times more fun with tabs (added plain and markdown tab).
Edho Arief <edho@myconan.net>
parents:
98
diff
changeset
|
11 <li><%= link_to 'Markdown', '#markdown', :data => { :toggle => 'tab' } %></li> |
108
a949b71c9afb
Allows paste content width resize.
Edho Arief <edho@myconan.net>
parents:
107
diff
changeset
|
12 <li class="pull-right"> |
a949b71c9afb
Allows paste content width resize.
Edho Arief <edho@myconan.net>
parents:
107
diff
changeset
|
13 <div class="btn-group" id="tab-resize"> |
a949b71c9afb
Allows paste content width resize.
Edho Arief <edho@myconan.net>
parents:
107
diff
changeset
|
14 <a class="btn btn-inverse dropdown-toggle" data-toggle="dropdown" href="#"> |
a949b71c9afb
Allows paste content width resize.
Edho Arief <edho@myconan.net>
parents:
107
diff
changeset
|
15 Width: full |
a949b71c9afb
Allows paste content width resize.
Edho Arief <edho@myconan.net>
parents:
107
diff
changeset
|
16 <span class="caret"></span> |
a949b71c9afb
Allows paste content width resize.
Edho Arief <edho@myconan.net>
parents:
107
diff
changeset
|
17 </a> |
a949b71c9afb
Allows paste content width resize.
Edho Arief <edho@myconan.net>
parents:
107
diff
changeset
|
18 <ul class="dropdown-menu"> |
a949b71c9afb
Allows paste content width resize.
Edho Arief <edho@myconan.net>
parents:
107
diff
changeset
|
19 <li><a href="#" data-size="full">full</a></li> |
a949b71c9afb
Allows paste content width resize.
Edho Arief <edho@myconan.net>
parents:
107
diff
changeset
|
20 <li><a href="#" data-size="560px">560px</a></li> |
a949b71c9afb
Allows paste content width resize.
Edho Arief <edho@myconan.net>
parents:
107
diff
changeset
|
21 <li><a href="#" data-size="760px">760px</a></li> |
a949b71c9afb
Allows paste content width resize.
Edho Arief <edho@myconan.net>
parents:
107
diff
changeset
|
22 <li><a href="#" data-size="960px">960px</a></li> |
a949b71c9afb
Allows paste content width resize.
Edho Arief <edho@myconan.net>
parents:
107
diff
changeset
|
23 </ul> |
a949b71c9afb
Allows paste content width resize.
Edho Arief <edho@myconan.net>
parents:
107
diff
changeset
|
24 </div> |
a949b71c9afb
Allows paste content width resize.
Edho Arief <edho@myconan.net>
parents:
107
diff
changeset
|
25 </li> |
100
90b59418828a
Three times more fun with tabs (added plain and markdown tab).
Edho Arief <edho@myconan.net>
parents:
98
diff
changeset
|
26 </ul> |
114
b72f99d7b8cf
Dynamic url based on options selected.
Edho Arief <edho@myconan.net>
parents:
112
diff
changeset
|
27 <div id="paste" data-mode="plain" data-width="full" 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
|
28 <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
|
29 <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
|
30 </div> |
90b59418828a
Three times more fun with tabs (added plain and markdown tab).
Edho Arief <edho@myconan.net>
parents:
98
diff
changeset
|
31 <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
|
32 <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
|
33 </div> |
90b59418828a
Three times more fun with tabs (added plain and markdown tab).
Edho Arief <edho@myconan.net>
parents:
98
diff
changeset
|
34 <div class="tab-pane" id="markdown"> |
105 | 35 <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
|
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> |
90b59418828a
Three times more fun with tabs (added plain and markdown tab).
Edho Arief <edho@myconan.net>
parents:
98
diff
changeset
|
38 </div> |
2 | 39 |
107 | 40 <div> |
41 <ul class="nav nav-pills"> | |
42 <li><%= link_to 'Raw', paste_path(@paste, :txt) %></li> | |
43 <li><%= link_to 'New paste based on this', root_path(:base => @paste.id) %></li> | |
44 <li><%= link_to 'More Paste', root_path %></li> | |
45 </ul> | |
46 </div> |