structables/templates/404.html
Kumi 232a1504fb
Update .gitignore and enhance project structure
- Add 'privacy.txt' to .gitignore to prevent checking it in
- Refactor data storage from arrays to dictionaries for better data handling in 'main.py'
- Include 'pathlib' import for handling filesystem paths
- Introduce new CSS and Bootstrap files providing updated styles and responsive design elements
- Modify HTML templates to use updated data structures and enhance accessibility

These changes improve code readability, maintain project consistency, and enhance the front-end presentation. This work is part of ongoing efforts to better manage project data, secure sensitive information, and provide a more robust user interface.
2024-01-17 16:43:51 +01:00

13 lines
No EOL
306 B
HTML

{% extends "base.html" %}
{% block content %}
<center>
<h1>404</h1>
<p>This resource cannot be found</p>
<br>
<p>Why don't you try one of these instead?</p>
<a href="/" class="go_here_link">Featured</a>
<a href="/contest" class="go_here_link">Contests</a>
<br><br>
</center>
{% endblock %}