timer/views/list.ejs

22 lines
491 B
Plaintext
Raw Normal View History

2024-10-27 14:47:03 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Timer</title>
<meta name="description" content="">
<meta name="author" content="">
</head>
<body>
<ul>
<% for (const hall of halls) { %>
<li>
<a href="<%= hall["prefix"] %>"><%= hall["title"] %></a>
<ul>
<a href="<%= hall["prefix"] %>/control">Control <%= hall["title"] %></a>
</ul>
</li>
<% } %>
</ul>
</body>
</html>