12 lines
337 B
HTML
12 lines
337 B
HTML
{% extends "error.html" %}
|
||
|
||
{% block title %}
|
||
<title>Quay.io - Page Not Found!</title>
|
||
{% endblock %}
|
||
|
||
{% block content %}
|
||
<h3>The page doesn't exist !</h3>
|
||
<h4>
|
||
This is somewhat embarrassing, isn’t it ? It looks like nothing was found at this location. Please return to the <a href="/">main page</a>.
|
||
</h4>
|
||
{% endblock %}
|