gitano/www/home.html
2025-04-03 23:02:46 +08:00

13 lines
219 B
HTML

<html>
<head>
<title>Gitano</title>
</head>
<body>
<ul>
{% for project in projects %}
<li><a href="{{project.name}}/">{{ project.name }}</a></li>
{% endfor %}
</ul>
</body>
</html>