Mercurial > zeropaste
annotate app/views/layouts/application.html.erb @ 380:2ddd61aca2c8
I18n. And refactor paste privacy settings form.
author | nanaya <me@myconan.net> |
---|---|
date | Sun, 07 Jun 2015 02:45:49 +0900 |
parents | 2ad092e60975 |
children | bfc5ad3f7dc5 |
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> | |
379 | 10 <header> |
11 <h1><%= content_for :title %></h1> | |
12 <p class="credit"> | |
13 Zeropaste. | |
14 <a href="https://bitbucket.org/nanaya1/zeropaste">Source</a>. | |
15 <%= link_to 'Donate', 'https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=me%40myconan%2enet&lc=ID&item_name=Zeropaste%20development¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_subscribe_LG%2egif%3aNonHosted' %>. | |
16 </p> | |
17 </header> | |
139 | 18 |
379 | 19 <main> |
20 <%= yield %> | |
21 </main> | |
0 | 22 |
222
9bc35555d3e3
Use external jquery instead of rails' builtin
Edho Arief <edho@myconan.net>
parents:
216
diff
changeset
|
23 <%= javascript_include_tag "//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js" %> |
216 | 24 <%= javascript_include_tag "application" %> |
139 | 25 </body> |
0 | 26 </html> |