Files
jc-ng/src/jakecharman/templates/error.html
2025-11-11 20:49:23 +00:00

11 lines
287 B
HTML
Executable File

{% include 'header.html' %}
<main>
<div id="error-container">
<div id='error'>
<h2>{{ error }}</h2>
<p>{{ description }}</p>
<a href='/'>Click here to return to the homepage</a>
</div>
</div>
</main>
{% include 'footer.html' %}