1
0
Fork 0
satnogs-db/db/templates/404.html

21 lines
400 B
HTML

{% extends "base.html" %}
{% load static %}
{% block title %} - Page Not found{% endblock %}
{% block content %}
<div class="error">
<h1>404</h1>
<h3>Page Not Found</h3>
<p>
This is not the page you were looking for.
Head back to <a href="{% url 'home' %}">homepage</a>.
</p>
<p><img src="{% static 'img/error.png' %}"></p>
</div>
{% endblock content %}