blob: 7a667bac3169d735de2ebc4e6993c35b0e2ddf38 (
plain)
1
2
3
4
5
6
7
8
9
10
|
{% extends "base.html" %}
{% block title %}{{ BRANDING_DISTRONAME }} - Page Not Found{% endblock %}
{% block content %}
<div id="error-page" class="box 404">
<h2>404 - Page Not Found</h2>
<p>Sorry, the page you've requested does not exist.</p>
</div>
{% endblock %}
|