Files
json-server/views/index.html
2023-12-01 15:46:25 +01:00

32 lines
734 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="/output.css" rel="stylesheet" />
</head>
<body class="container mx-auto prose">
<header>
<h1>JSON Server [alpha]</h1>
</header>
<main>
<h2>Routes</h2>
<ul class="font-mono">
<% Object.entries(it.data).forEach(function([name]) { %>
<li>
<a href="<%= name %>">
/<%= name %>
</a>
</li>
<% }) %>
</ul>
</main>
<footer class="space-x-4">
<a href="https://github.com/typicode/json-server">🐱 GitHub</a>
<a href="https://github.com/sponsors/typicode">♥ Sponsor</a>
</footer>
</body>
</html>