10 lines
275 B
Text
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 %>
|