entrance-exam/app/views/sections/index.html.erb

8 lines
293 B
Text

<div class="title-card-grid">
<% @sections.each do |section| %>
<%= link_to(section_url(section), html_options = { class: 'title-card-container' }) do %>
<h4><%= section.title %></h4>
<p><%= section.description %></p>
<% end %>
<% end %>
</div>