I have restarted exercise multiple times and read other related forums also but found no help.
Below is my code.
<div class="header">
<div class="container">
<img src="http://s3.amazonaws.com/codecademy-content/courses/learn-rails/img/logo-1tm.svg" width="80">
<h1>BokenjiKan</h1>
</div>
</div>
<div class="tag">
<div class="container">
<h2 class="tag-title"> <%= @tag.title %> </h2>
<div class="cards row">
<% @destinations.each do |dest| %>
<div class="card col-xs-4">
<%= image_tag dest.image %>
<h2> <%= dest.name %> </h2>
<p> <%= dest.description %> </p>
<%= link_to "See more", destination_path(dest) %>
</div>
<% end %>
</div>
</div>
</div>