実現したいこと
Railsでカレンダーアプリを作成練習
前提
Railsでカレンダーアプリを模写しましたが、エラーが出ました。
発生している問題・エラーメッセージ
ActionView::SyntaxErrorInTemplate in BlogsController#index Encountered a syntax error while rendering template: check
該当のソースコード
<p id="notice"><%= notice %></p> <div class="toppage"> <h1 class="top">カレンダー</h1> <br> <div class="row"> <div class="col-md-4"> <div class="schedule">今後の予定一覧</div> <table class="table"> <thead class="thead-light"> <tr> <th>タイトル</th> <th>日程</th> </tr> </thead> <tbody> <% @blogs.each do |blog| %> <tr> <td><%= link_to blog.title , blog %></td> <td><%= blog.start_time.strftime("%m-%d") %></td> </tr> <% end %> </tbody> </table> <%= form_with(model: @blog, local: true) do |form| %> <div class="title"> <div class="form-tag">タイトル</div> <%= form.text_field :title %> </div> <div class="content"> <div class="form-tag">内容</div> <%= form.text_field :content %> </div> <div class="time"> <div class="form-tag">時間</div> <%= form.datetime_select :start_time %> </div> <div class="submit"> <%= form.submit %> </div> <% end %> </div> <br> <br> <div class="col-md-8"> <%#<%= month_calendar events: @blogs do |date, blogs| %> <%= date.day %> <% blogs.each do |blog| %> <div> <%= link_to blog.title, blog %> </div> <% end %> <% end %> </div> </div> </div> </div>
試したこと
コード模写の際に誤字脱字があるのかと思い、全て確認しましたが模写サイト記載のものと相違ありませんでした。
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。

バッドをするには、ログインかつ
こちらの条件を満たす必要があります。