質問編集履歴

1

application\.html\.erb

2017/05/24 00:26

投稿

pecchan
pecchan

スコア555

test CHANGED
File without changes
test CHANGED
@@ -55,3 +55,71 @@
55
55
 
56
56
 
57
57
  宜しくお願い致します。
58
+
59
+
60
+
61
+
62
+
63
+
64
+
65
+ application.html.erb
66
+
67
+ ```Ruby
68
+
69
+ <!DOCTYPE html>
70
+
71
+ <html lang="ja">
72
+
73
+ <head>
74
+
75
+ <meta charset="utf-8">
76
+
77
+ <title>DEMO</title>
78
+
79
+
80
+
81
+ <!--[if lt IE 9]>
82
+
83
+ <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
84
+
85
+ <script src="http://css3-mediaqueries-js.googlecode.com/svn/trunk/css3-mediaqueries.js"></script>
86
+
87
+ <![endif]-->
88
+
89
+ <%= csrf_meta_tags %>
90
+
91
+ <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %>
92
+
93
+ <%= javascript_include_tag 'application', 'data-turbolinks-track': 'reload' %>
94
+
95
+
96
+
97
+ </head>
98
+
99
+
100
+
101
+ <body class='<%= "#{controller.controller_name}" %>'>
102
+
103
+
104
+
105
+ <div class="row header_top">
106
+
107
+ <%= render 'shared/header_menu' %>
108
+
109
+ </div>
110
+
111
+
112
+
113
+ <%= yield %>
114
+
115
+
116
+
117
+
118
+
119
+ </body>
120
+
121
+
122
+
123
+ </html>
124
+
125
+ ```