website/templates/404.html

8 lines
283 B
HTML
Raw Permalink Normal View History

{% extends "index.html" %}
{% block title %}Page not found{% endblock title %}
{% block content %}
Sorry, we've misplaced that URL or it's pointing to something that doesn't exist. <a href="{{ config.base_url }}/">Head back home</a> to try finding it again.
{% endblock content %}