Init wagtail project

This commit is contained in:
Jake Howard 2022-06-09 08:36:29 +01:00
parent fb286d7a63
commit 5f814b2a5a
Signed by: jake
GPG key ID: 57AFB45680EDD477
23 changed files with 1043 additions and 0 deletions

11
templates/404.html Normal file
View file

@ -0,0 +1,11 @@
{% extends "base.html" %}
{% block title %}Page not found{% endblock %}
{% block body_class %}template-404{% endblock %}
{% block content %}
<h1>Page not found</h1>
<h2>Sorry, this page could not be found.</h2>
{% endblock %}