質問編集履歴

1

index.html.erbを追記しました

2021/08/23 00:31

投稿

tamu_daiki
tamu_daiki

スコア10

test CHANGED
File without changes
test CHANGED
@@ -27,6 +27,38 @@
27
27
  ```ここに言語を入力
28
28
 
29
29
  <%= link_to "コメントする", post_comment_id_path(@comment.id) %>
30
+
31
+ ```
32
+
33
+ 追記
34
+
35
+ 初期画面(index.html.erb)
36
+
37
+ ```ここに言語を入力
38
+
39
+ <div class="container">
40
+
41
+ <div class="row">
42
+
43
+ <div class="list-group list-group-flush mx-auto" style="width: 50rem;">
44
+
45
+ <% @posts.each do |post| %>
46
+
47
+ <div class="list-group-item list-group-item-success mt-5 border-left border-right"><%= post.shopname %> : <%= link_to "コメントする", post_comment_id_path(@comment.id) %> </div>
48
+
49
+ <div class="list-group-item border-left border-right"><%= post.shopaddress %></div>
50
+
51
+ <div class="list-group-item border-left border-right border-bottom" style="height: 8rem;"><%= post.shopcontent %></div>
52
+
53
+ コメント数<%= post.comments.count %>
54
+
55
+ <% end %>
56
+
57
+ </div>
58
+
59
+ </div>
60
+
61
+ </div>
30
62
 
31
63
  ```
32
64