datatracker/ietf/templates/500.html
Lars Eggert 337d2ad387
feat: Switch to SVG logo; use it (and new bitmaps) in more places (#4035)
* feat: Switch to SVG logo; use it (and new bitmaps) in more places

* Run images through image_optim

* Copy icons from base template

* Tint icons red when in dev mode
2022-05-31 17:03:43 -05:00

26 lines
1.1 KiB
HTML

{# Copyright The IETF Trust 2007-2022, All Rights Reserved #}
{% extends "base.html" %}
{% load static %}
{% block title %}500 Internal Server Error{% endblock %}
{% block content %}
<img class="col-2 mb-5"
src="{% static 'ietf/images/ietf-logo.svg' %}"
alt="IETF">
<div class="alert alert-warning my-3">
<h1>Internal Server Error</h1>
<hr>
<p>
The server encountered an internal error and was unable to complete
your request. Either the server is overloaded or there was an
error in a script used to generate the requested page. In case this
was an overload problem or other temporary error, you may want to
try again in a little while.
</p>
<p class="mb-0">
A failure report with details about what happened has been sent to the
server administrators. It would be helpful if you would create an issue
providing additional information at
<a href="https://github.com/ietf-tools/datatracker/issues/new/choose">GitHub</a>, too.
</p>
</div>
{% endblock %}