blog/backend/templates/status_code.html
2023-02-11 12:48:39 +01:00

20 lines
464 B
HTML

{% extends "base.html" %}
{% block title %}{{ status_code|lower }}{% endblock %}
{% block head %}{% endblock %}
{% block breadcrumb %}{% endblock %}
{% block content %}
<div id="status-code">
<p><b>{{ status_code }}!</b></p>
{% match message %}
{% when Some with (x) %}
<p id="status-code-message"><i>{{ x }}</i></p>
{% when None %}
{% endmatch %}
<p>:(</p>
</div>
{% endblock %}