-2
<%= @posts.each do |post| %>
<div class='post_wrapper'>
<h2 class="title"><%= link_to post.title, post%></h2>
<p class="date">
<%= time_ago_in_words(post.created_at%>ago
</p>
</div>
<% end %>
"unexpected keyword_end、expecting ')"というエラーが発生しました。 "私が上記のコードのために自分のlocalhostにリロードするとき。なぜそれがそのエラーを投げているのか分かりません。構文エラー、予期しないキーワード
<%end%>のファイルもありますが、同じエラーは発生しません。
ありがとうございます!どのように私はそれを逃した! –