You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
331 B
HTML
15 lines
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 %} |