Mercurial > zeropaste
annotate app/views/layouts/application.html.erb @ 370:5a4d31e97937
Remove extra file extensions.
author | edogawaconan <me@myconan.net> |
---|---|
date | Tue, 14 Apr 2015 00:22:07 +0900 |
parents | 62d16b74e3d7 |
children | 62f2a4b27af6 |
rev | line source |
---|---|
0 | 1 <!DOCTYPE html> |
2 <html> | |
139 | 3 <head> |
4 <meta http-equiv="Content-type" content="text/html;charset=UTF-8"> | |
5 <title><%= html_title %></title> | |
259 | 6 <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
139 | 7 <%= stylesheet_link_tag "application", :media => "all" %> |
8 </head> | |
9 <body> | |
0 | 10 |
259 | 11 <div id="wrap"> |
12 <div class="container"> | |
13 <%= yield %> | |
14 </div> | |
15 </div> | |
139 | 16 |
259 | 17 <div id="footer"> |
18 <div class="container"> | |
19 <p class="text-muted credit"> | |
285 | 20 Zeropaste. |
259 | 21 <a href="https://bitbucket.org/edogawaconan/zeropaste">Source</a>. |
339 | 22 <%= link_to 'Donate', 'https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=edho%40live%2ejp&lc=ID&item_name=Zeropaste%20development¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_subscribe_LG%2egif%3aNonHosted' %>. |
259 | 23 </p> |
27 | 24 </div> |
25 </div> | |
0 | 26 |
222
9bc35555d3e3
Use external jquery instead of rails' builtin
Edho Arief <edho@myconan.net>
parents:
216
diff
changeset
|
27 <%= javascript_include_tag "//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js" %> |
216 | 28 <%= javascript_include_tag "application" %> |
139 | 29 </body> |
0 | 30 </html> |