17 lines
		
	
	
		
			512 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			512 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "bases/base.html" %}
 | 
						|
 | 
						|
{% block title %}500 - Internal Server Error{% endblock %}
 | 
						|
{% block description %}An unexpected error occurred on the server.{% endblock %}
 | 
						|
 | 
						|
{% block head %}
 | 
						|
<link rel="stylesheet" href="/static/css/500.css">
 | 
						|
{% endblock %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
<section class="bluescreen">
 | 
						|
    <h1>:(</h1>
 | 
						|
    <p>
 | 
						|
        Oopsie Woopsie! Uwu We made a fucky wucky!! A wittle fucko boingo! The code monkeys at our headquarters are working VEWY HAWD to fix this!
 | 
						|
    </p>
 | 
						|
</section>
 | 
						|
{% endblock %} |