13 lines
289 B
HTML
13 lines
289 B
HTML
{#
|
|
Use this template to build out your 404 error pages. Like page templates,
|
|
it inherits a global layout.
|
|
#}
|
|
|
|
{% extends "layout.html" %}
|
|
|
|
{% block title %}404 - Page not found{% endblock %}
|
|
|
|
{% block main %}
|
|
We're sorry. We couldn't find the page you're looking for.
|
|
{% endblock %}
|