404.html 951 Bytes
Newer Older
1 2 3
<%page expression_filter="h"/>
<%!
from django.utils.translation import ugettext as _
4
from openedx.core.djangolib.markup import HTML, Text
5
%>
6
<%inherit file="base.html" />
David Baumgold committed
7
<%block name="title">${_("Page Not Found")}</%block>
8
<%block name="bodyclass">view-util util-404</%block>
9 10


11
<%block name="content">
12 13
<div class="wrapper-content wrapper">
  <section class="content">
14 15 16 17
    <header>
      <h1 class="title title-1">${_("Page not found")}</h1>
    </header>
    <article class="content-primary" role="main">
18 19 20 21
      <p>
      ${_('The page that you were looking for was not found.')}
      ${Text(_('Go back to the {homepage} or let us know about any pages that may have been moved at {email}.')).format(
        homepage=HTML('<a href="/">homepage</a>'),
22
        email=HTML('<a href="mailto:{address}">{address}</a>').format(
23
          address=Text(settings.TECH_SUPPORT_EMAIL)
24
        )
25
      )}
26 27
      </p>
    </article>
28 29
  </section>
</div>
David Baumgold committed
30
</%block>