mirror of
https://git.sr.ht/~metalune/simpleweb_peertube
synced 2024-12-22 20:59:35 +01:00
9 lines
162 B
HTML
9 lines
162 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block title %}ERROR: {% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
<h1>Error {{ error_number }}</h1>
|
||
|
<p>{{ error_reason }}</p>
|
||
|
{% endblock %}
|