14 lines
		
	
	
		
			300 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			300 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends 'base.html' %}
 | |
| 
 | |
| {% block title %}Error{% endblock %}
 | |
| 
 | |
| {% block content %}
 | |
| <h2>⚠️ Error {{ status_code }} ⚠️</h2>
 | |
| {% if err.description %}
 | |
| <p><code>{{ err.description }}</code></p>
 | |
| {% else %}
 | |
| <p>Something went wrong!</p>
 | |
| {% endif %}
 | |
| <p><a href="/">Start Over</a></p>
 | |
| {% endblock %}
 |