This commit is contained in:
Dominic Grimm 2023-02-08 22:13:11 +01:00
parent 94fb270008
commit 584c07ff23
No known key found for this signature in database
GPG key ID: 6F294212DEAAC530
22 changed files with 539 additions and 187 deletions

View file

@ -0,0 +1,14 @@
{% 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 %}