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/postnotfound.html

15 lines
331 B
HTML
Raw Permalink Normal View History

2023-02-04 18:42:08 -08:00
{% extends "base.html" %}
{% block title %}404{% endblock %}
{% block description %}
This post wasn't found!
2023-02-04 18:42:08 -08:00
{% endblock %}
{% block content %}
<h1>Post not found!</h1>
2023-02-04 18:42:08 -08:00
<p><code>{{ slug }}</code> was not found! Would you like to view other <a href="/posts">posts</a> or go <a href="/">home</a>?</p>
2023-02-04 18:42:08 -08:00
{% endblock %}