I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit a665d615 authored by str4d's avatar str4d
Browse files

500 error page should have minimal reliance on the backend (so it doesn't error itself)

parent 6772b465
No related branches found
No related tags found
No related merge requests found
{% extends "global/layout.html" %}
{% block title -%}
{% trans -%}
Server error
{%- endtrans %}
{%- endblock %}
{% block content %}
{% trans -%}
Umm... the server encountered some sort of error.
{%- endtrans %}
{% endblock %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{% trans %}Server error{% endtrans %} - I2P</title>
<link rel="stylesheet" type="text/css" href="/_static/styles/duck.css" title="duck" />
<link rel="shortcut icon" type="image/x-icon" href="/_static/favicon.ico" />
<meta name="robots" content="NOODP" />
</head>
<body>
<div id="branding">
<h1 id="logo"><a href="/"><img src="/_static/images/logo_medium.png" alt="I2P" /></a></h1>
<div class="title">{% trans %}500 Server error{% endtrans %}</div>
</div>
<div id="content">
<div class="inner">
{% trans %}Umm... the server encountered some sort of error.{% endtrans %}
</div>
</div>
</body>
</html>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment