mirror of
https://github.com/ProjectSynthoria/SynthoriaArchive.git
synced 2025-03-12 07:26:54 +02:00
9 lines
308 B
HTML
9 lines
308 B
HTML
{% extends "layout.html" %}
|
|
{% block title %}404 Not Found :: {{ config.SITE_NAME }}{% endblock %}
|
|
{% block metatags %}
|
|
<meta property="og:description" content="Nothing here.">
|
|
{% endblock %}
|
|
{% block body %}
|
|
<h1>404 Not Found</h1>
|
|
<p>The path you requested does not exist on this server.</p>
|
|
{% endblock %}
|