<%page expression_filter="h"/> <%namespace name='static' file='../static_content.html'/> <%! from django.utils.translation import gettext as _ from openedx.core.djangolib.markup import HTML, Text %> <%inherit file="../main.html" /> {% if BRANDING_STATIC_TEMPLATE_404 %} {{ BRANDING_STATIC_TEMPLATE_404 }} {% else %} <%block name="pagetitle">${_("Page Not Found")}

<%block name="pageheader">${page_header or _("Page not found")}

<%block name="pagecontent"> % if page_content: ${page_content} % else: ${Text(_('The page that you were looking for was not found. Go back to the {link_start}homepage{link_end} .')).format( link_start=HTML(''), link_end=HTML('') )} % endif

{% endif %}