datatracker/ietf/templates/404.html
Ole Laursen a589115ff4 Summary: Reindent all HTML files to follow the previous convention (no
tabs) and kill the scripts block in favour of just using a js block with
a script tag (which is easier to understand for context-sensitive
modes such as web-mode in Emacs). Also fix a couple of details, e.g.
missing semicolons in JS snippets.
 - Legacy-Id: 9096
2015-02-17 18:01:04 +00:00

17 lines
567 B
HTML

{# Copyright The IETF Trust 2007, All Rights Reserved #}
{% extends "ietf.html" %}
{% block title %}404 Not Found{% endblock %}
{% block content %}
<img class="ietflogo" src="/images/ietflogo.png" alt="IETF" style="width: 10em">
<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:webtools@ietf.org">webtools@ietf.org</a>.</p>
{% endblock %}