initial commit a lot more stuff Make project REUSE compliant start working on implementing audio
13 lines
275 B
HTML
13 lines
275 B
HTML
{% extends "base.html" %}
|
|
{% block title %}
|
|
404 Error
|
|
{% endblock title %}
|
|
{% block style %}
|
|
<link rel="stylesheet" href="/404.css"/>
|
|
{% endblock style %}
|
|
{% block content %}
|
|
<div id="error">
|
|
<h1>404<h1>
|
|
<h3>This page does not exist<h3>
|
|
</div>
|
|
{% endblock content %}
|