src/server/http/templates/error.html
Ref: Size: 390 B
{% extends "base.html" %}
{% block title %}{{ status_code }} — {{ site_title }}{% endblock %}
{% block body %}
<div style="max-width: 800px; margin: 80px auto; text-align: center;">
<div style="font-size: 72px; font-weight: 700; color: #666; line-height: 1;">{{ status_code }}</div>
<p style="color: #666; margin-top: 16px; font-size: 16px;">{{ message }}</p>
</div>
{% endblock %}