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
No EOL
331 B
HTML

{% extends "base.html" %}
{% block title %}404{% endblock %}
{% block description %}
This post wasn't found!
{% endblock %}
{% block content %}
<h1>Post not found!</h1>
<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>
{% endblock %}