Jeroen De Meerleer
265128d725
- Adjusted handling of known paths to dynamically include additional routes if a specific directory exists, enhancing user experience.
14 lines
331 B
Twig
14 lines
331 B
Twig
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<meta charset="UTF-8">
|
|
<title>Page Title</title>
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
<style>
|
|
</style>
|
|
<body>
|
|
<h1>404 Uri {{ path }} not found</h1>
|
|
{% for knownpath in knownpaths %}
|
|
<p><a href="{{ knownpath }}">{{ knownpath }}</a></p>
|
|
{% endfor %}
|
|
</body>
|
|
</html> |