blob: 2129e8b211f3dc59030eb4aa2c9d74f00759ede6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
{% extends 'base_error.html' %}
{% load i18n %}
{% block title %}{% translate "Page removed" %}{% endblock %}
{% block header %}<h1>410</h1>{% endblock %}
{% block content %}
<h2>{% translate "Page removed." %}</h2>
{% url 'homepage' host 'docs' as docs_url %}
<p>
{% blocktranslate trimmed %}
Sorry, we've removed some of parts of the site that were completely out
of date. In most cases, that content has been moved into
<a href="{{ docs_url }}">the new documentation site</a>.
{% endblocktranslate %}</p>
{% url 'homepage' as homepage_url %}
<p>
{% blocktranslate trimmed %}
Here's a link to the <a href="{{ homepage_url }}">homepage</a>. You know, just in case.
{% endblocktranslate %}
</p>
{% endblock %}
|