This repository has been archived on 2025-02-09. You can view files and clone it, but cannot push or open issues or pull requests.
kyanite/templates/notfound.html
2023-02-04 18:42:08 -08:00

15 lines
No EOL
290 B
HTML

{% extends "base.html" %}
{% block title %}404{% endblock %}
{% block description %}
This page wasn't found!
{% endblock %}
{% block content %}
<h1>Page not found!</h1>
<p><code>{{ slug }}</code> was not found! Would you like to go <a href="/">home</a>?</p>
{% endblock %}