lightspeed/templates/404.html

8 lines
329 B
HTML
Raw Normal View History

2020-04-13 19:19:58 +00:00
{% extends "index.html" %}
{% block title %}404: Page not found{%endblock title %}
{% block content %}
2020-09-20 17:57:54 +00:00
<h1>404: Page not found</h1>
2020-04-13 19:19:58 +00:00
<p>Sorry, we've misplaced that URL or it's pointing to something that doesn't exist. <a href="{{ config.base_url | safe }}/">Head back home</a> to try finding it again.</p>
{% endblock content %}