This repository has been archived on 2025-12-11. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
quizzy-application/drill-and-practice/views/quizTopics.eta
2023-03-10 16:41:57 +02:00

19 lines
327 B
Plaintext

<% layout("./layouts/layout.eta") %>
<h1>Quiz</h1>
<h2>All available topics</h2>
<% if (it.topics && it.topics.length > 0) { %>
<ul>
<% it.topics.forEach(topic => { %>
<p>
<li>
<a href="/quiz/<%= item.id %>"><%= item.name %></a>
</li>
</p>
<% }); %>
</ul>
<% } else { %>
<p>No available topics.</p>
<% } %>