All checks were successful
Build and push container image / build-and-push-image (push) Successful in 6m3s
19 lines
452 B
HTML
19 lines
452 B
HTML
{% extends "bases/base.html" %}
|
|
|
|
{% block title %}404 - Not Found{% endblock %}
|
|
{% block description %}The page you are looking for does not exist.{% endblock %}
|
|
|
|
{% block content %}
|
|
<section>
|
|
<h1>404</h1>
|
|
<p>
|
|
It seems like the thing you are looking for does not exist or <code>rm -rf</code> itself out of exsistance.
|
|
</p>
|
|
</section>
|
|
<section>
|
|
<h2>Actual error</h2>
|
|
<p>
|
|
{{ error }}
|
|
</p>
|
|
</section>
|
|
{% endblock %} |