Remove unused static/error templates

This commit is contained in:
Ben Sturmfels 2024-03-22 11:23:19 +11:00
parent b7dcfa4a9b
commit db39fbb446
Signed by: bsturmfels
GPG key ID: 023C05E2C9C068F0
4 changed files with 0 additions and 30 deletions

View file

@ -1,10 +0,0 @@
{% extends "base_error.html" %}
{% block content %}
<h1>401 Error</h1>
<p>The page you requested at <tt>sfconservancy.org</tt>
requires authorization. Please use the navigation items to find a
page that you are authorized to see.</p>
{% endblock %}

View file

@ -1,10 +0,0 @@
{% extends "base_error.html" %}
{% block content %}
<h1>403 Error</h1>
<p>The page you requested at <tt>sfconservancy.org</tt>
does not have read permission. Please use the navigation items to
find a page that you are authorized to see.</p>
{% endblock %}

View file

@ -1,9 +0,0 @@
{% extends "base_error.html" %}
{% block content %}
<h1>404 Error</h1>
<p>The page you requested at <tt>sfconservancy.org</tt>
was not found. Please use the navigation items to find a page that is
available.</p>
{% endblock %}

View file

@ -1 +0,0 @@
{% extends "500.html" %}