blog/backend/templates/status_code.html

20 lines
464 B
HTML
Raw Normal View History

2023-02-08 21:13:11 +00:00
{% extends "base.html" %}
2023-02-11 11:48:39 +00:00
{% block title %}{{ status_code|lower }}{% endblock %}
2023-02-08 21:13:11 +00:00
{% block head %}{% endblock %}
2023-02-11 11:48:39 +00:00
{% block breadcrumb %}{% endblock %}
2023-02-08 21:13:11 +00:00
{% block content %}
2023-02-11 11:48:39 +00:00
<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>
2023-02-08 21:13:11 +00:00
{% endblock %}