durfdoen-2.0/layouts/quiz.erb
2020-02-27 22:45:50 +01:00

10 lines
275 B
Text

<h1>Hallo</h1>
<ul>
<% @items.find_all("**/quiz/*").each_with_index do |quest, i| %>
<div id="question_<%=i%>" class="question">
<h2> <%= quest[:vraag] %> </h2>
<%= render '/partials/question.*', question: quest %>
</div>
<% end %>
</ul>
<%= yield %>