Files
website-v2/templates/500.html
Greg Newman 057c16bb9f 🎨 cleaning up some home page styles
First pass with rustywind is doing massive cleanup
2023-04-28 09:27:38 -04:00

15 lines
406 B
HTML

{% extends "base.html" %}
{% block title %}Server Error{% endblock %}
{% block content_wrapper %}
<div class="flex justify-center items-center mb-4 bg-red-600">
<h1 class="m-10 text-5xl text-white">500 - Server Error</h1>
</div>
<div class="container px-4 my-8 mx-auto">
<p class="text-2xl text-center">
There was a problem building the page you requested.
</p>
</div>
{% endblock %}