blob: 41beaa4e341c9d649e1f76d1fa6b962bc66957e8 (
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>400 Bad Request</h1>
<p>Unfortunately, something went wrong. The server could not understand your request.</p>
<p><a href="{% url 'blog:home' %}" class="button button-special">Go Home</a></p>
</div>
</div>
{% endblock %}
|