質問編集履歴
1
追記
title
CHANGED
File without changes
|
body
CHANGED
@@ -28,4 +28,22 @@
|
|
28
28
|
//= require_tree .
|
29
29
|
//= require jquery
|
30
30
|
//= require jquery_ujs
|
31
|
+
```
|
32
|
+
|
33
|
+
```applicationhtmlerb
|
34
|
+
<!DOCTYPE html>
|
35
|
+
<html>
|
36
|
+
<head>
|
37
|
+
<title>Sample</title>
|
38
|
+
<%= csrf_meta_tags %>
|
39
|
+
<%= csp_meta_tag %>
|
40
|
+
|
41
|
+
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %>
|
42
|
+
<%= javascript_include_tag 'application', 'data-turbolinks-track': 'reload' %>
|
43
|
+
</head>
|
44
|
+
|
45
|
+
<body>
|
46
|
+
<%= yield %>
|
47
|
+
</body>
|
48
|
+
</html>
|
31
49
|
```
|