source: src/main/resources/templates/quizzes.html@ c3268ca

main
Last change on this file since c3268ca was c3268ca, checked in by Stefan Risteski <stefanristeski2001@…>, 9 months ago

Project

The whole Project

  • Property mode set to 100644
File size: 374 bytes
Line 
1<!DOCTYPE html>
2<html lang="en" xmlns:th="http://www.thymeleaf.org">
3<head>
4 <meta charset="UTF-8">
5 <title>Quiz Selection</title>
6 <link rel="stylesheet" href="/styles.css">
7</head>
8<body>
9
10<div th:each="quiz : ${quizzes}" >
11
12 <a th:href="@{'/{quizid}/quizStart' (quizid=${quiz.getQuizid()})}" th:text="${quiz.getQuizname()}">
13 </a>
14
15</div>
16
17</body>
18</html>
Note: See TracBrowser for help on using the repository browser.