21 lines
652 B
HTML
21 lines
652 B
HTML
{# Copyright The IETF Trust 2007, All Rights Reserved #}
|
|
{% extends "base.html" %}
|
|
{% load static %}
|
|
{% block title %}404 Not Found{% endblock %}
|
|
{% block content %}
|
|
|
|
<img class="ietflogo" src="{% static 'ietf/images/ietflogo.png' %}" alt="IETF" style="width: 10em">
|
|
<div class='alert'>
|
|
|
|
<h2>The page you were looking for couldn't be found.</h2>
|
|
|
|
|
|
<p> The requested URL was not found on this server. If you entered the URL
|
|
manually please check your spelling and try again.</p>
|
|
|
|
<p>If you think this is a server error, please contact <a href="mailto:{{ bugreport_email }}">{{ bugreport_email }}</a>.</p>
|
|
|
|
</div>
|
|
{% endblock %}
|
|
|