empresalibre.net/mysite/mysite/templates/404.html

12 lines
238 B
HTML
Raw Normal View History

2021-09-15 20:56:56 -05:00
{% extends "base.html" %}
{% block title %}Page not found{% endblock %}
{% block body_class %}template-404{% endblock %}
{% block content %}
<h1>Page not found</h1>
<h2>Sorry, this page could not be found.</h2>
{% endblock %}