blog/backend/templates/status_code.html
2023-02-08 22:13:11 +01:00

14 lines
303 B
HTML

{% extends "base.html" %}
{% block title %}{{ status_code }}{% endblock %}
{% block head %}{% endblock %}
{% block content %}
<h1>{{ status_code }}!</h1>
{% match message %}
{% when Some with (x) %}
<p>{{ x }}</p>
{% when None %}
{% endmatch %}
{% endblock %}