Self-hostable blog for developers built on Wagtail and Django, with webpack, Bootstrap, and CodeMirror.
blogbootstrapdjangodockerhandcodedpythonself-hostedwagtailwebpack
1{% extends 'base.html' %}
2{% load static %}
3
4
5{% block title %}404{% endblock %}
6{% block description %}That means the page you are looking for doesn't exist.{% endblock %}
7
8
9{% block breadcrumbs_wrapper %}{% endblock %}
10
11
12{% block main %}
13<div class="container">
14 <div class="row">
15 <div class="col text-center py-5">
16 <h1 class="display-1">404</h1>
17 <p>That means the page you are looking for doesn't exist.</p>
18 </div>
19 </div>
20</div>
21{% endblock %}