Files
ottertune/server/website/website/templates/404.html
2019-08-23 11:47:19 -04:00

12 lines
229 B
HTML

{% extends "base.html" %}
{% block title %}Page not found{% endblock %}
{% block body %}
<div style="text-align: center;">
<h1>Page not found</h1>
<p>Sorry, but the requested page could not be found.</p>
</div>
{% endblock %}