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

19 lines
496 B
HTML

<!-- index.html -->
<!DOCTYPE html>
<html>
<head>
<title>404 {{ requested_path }} not found</title>
</head>
<body>
<h2>Page Not Found</h2>
<hr>
<h3>Suggestions</h3>
<p>
You're looking for {{ requested_path }}, but there's nothing here, here are some suggestions:
</p>
{% for suggestion in suggestions %}
<li><a href="{{ suggestion }}">{{ suggestion }}</a> </li>
{% endfor %}
</body>
</html>