fastapi-dynamic-response/templates/sitemap.html
Waylon S. Walker a426df12c0 init
2024-10-13 20:31:03 -05:00

13 lines
263 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>siemap</title>
</head>
<body>
<h1>Sitemap</h1>
{% for route in data.available_routes %}
<li><a href="{{ route }}">{{ route }}</a> </li>
{% endfor %}
</body>
</html>