summaryrefslogtreecommitdiff
path: root/djangoproject/templates/404.html
blob: c34e301e7e583ed7d0175fb0e2b11b40af35e4a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{% extends 'base_error.html' %}
{% load i18n %}

{% block title %}{% translate "Page not found" %}{% endblock %}

{% block header %}<h1>404</h1>{% endblock %}

{% block content %}
  <h2>{% translate "Page not found" %}</h2>

  <p>
    {% blocktranslate trimmed %}
      Looks like you followed a bad link. If you think it's our fault, please
      <a href="https://github.com/django/djangoproject.com/issues/">let us know</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 %}