Spaces:
Build error
Build error
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Tracklight Projects</title> | |
<style> | |
body { font-family: sans-serif; } | |
.container { max-width: 1200px; margin: 0 auto; padding: 20px; } | |
table { width: 100%; border-collapse: collapse; } | |
th, td { border: 1px solid #ccc; padding: 8px; text-align: left; } | |
th { background-color: #f2f2f2; } | |
</style> | |
</head> | |
<body> | |
<div class="container"> | |
<h1>Projects</h1> | |
<table> | |
<thead> | |
<tr> | |
<th>Project Name</th> | |
<th>Created At</th> | |
</tr> | |
</thead> | |
<tbody> | |
{% for project in projects %} | |
<tr> | |
<td><a href="/project/{{ project[0] }}?user=hf-user">{{ project[0] }}</a></td> | |
<td>{{ project[1] }}</td> | |
</tr> | |
{% endfor %} | |
</tbody> | |
</table> | |
</div> | |
</body> | |
</html> |