blog/backend/templates/status_code.html

15 lines
303 B
HTML
Raw Normal View History

2023-02-08 21:13:11 +00:00
{% 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 %}