Browse Subversion Repository
Contents of /trunk/app/views/layouts/application.html.erb
Parent Directory
| Revision Log
| 1 |
<!DOCTYPE html> |
| 2 |
<html> |
| 3 |
<head> |
| 4 |
<meta charset="UTF-8" /> |
| 5 |
<title><%= YOMEYA_NAME %></title> |
| 6 |
<meta name="apple-mobile-web-app-capable" content="yes" /> |
| 7 |
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" /> |
| 8 |
<meta name="viewport" content="width=device-width,height=device-height,user-scalable=no" /> |
| 9 |
<meta name="format-detection" content="telephone=no" /> |
| 10 |
<meta name="google" content="notranslate" /> |
| 11 |
<%= stylesheet_link_tag("application", "data-turbolinks-track" => true, media: "all") %> |
| 12 |
<%= stylesheet_link_tag(params[:controller], "data-turbolinks-track" => true, media: "all") %> |
| 13 |
<%= javascript_include_tag("application", "data-turbolinks-track" => true) %> |
| 14 |
<%= javascript_include_tag(params[:controller], "data-turbolinks-track" => true) %> |
| 15 |
<%= csrf_meta_tags %> |
| 16 |
</head> |
| 17 |
<body> |
| 18 |
<!-- <%= rand(0x100000000) %> --> |
| 19 |
<%= yield %> |
| 20 |
</body> |
| 21 |
</html> |
| |