Modify 500 error page to not need config
This commit is contained in:
parent
226a60bec7
commit
d6e891426c
|
@ -1,8 +1,21 @@
|
|||
{% extends "base_plain.html" %}
|
||||
|
||||
{% block content %}
|
||||
<h1>Internal Error</h1>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>Internal Error</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
{% load static %}
|
||||
<link rel="stylesheet" href="{% static "css/style.css" %}" type="text/css" media="screen" />
|
||||
<link rel="stylesheet" href="{% static "fonts/raleway/raleway.css" %}" type="text/css" />
|
||||
<link rel="stylesheet" href="{% static "fonts/font_awesome/all.min.css" %}" type="text/css" />
|
||||
<link rel="shortcut icon" href="{{ config.site_icon }}">
|
||||
</head>
|
||||
<body>
|
||||
<main>
|
||||
<section class="markdown">
|
||||
<p>Sorry about that. We'll try to have this working again soon.</p>
|
||||
<h1 class="above">Internal Server Error</h1>
|
||||
<p>The server encountered an error trying to process your request.</p>
|
||||
</section>
|
||||
{% endblock %}
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Reference in New Issue