aboutsummaryrefslogtreecommitdiff
path: root/templates/500.html
blob: f61b46fad99aa7379ea04dd2a646b3516e9209b7 (plain)
1
2
3
4
5
6
7
8
9
10
{% extends 'blog/partials/base.html' %} {% block content %}
{% load static %}
<div class="main">
  <div style="text-align: center;">
    <h1>500 Server Error</h1>
    <p>Sorry, something went wrong. The server encountered an internal error or misconfiguration and was unable to complete your request.</p>
    <p><a href="{% url 'blog:home' %}" class="button button-special">Go Home</a></p>
  </div>
</div>
{% endblock %}