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 %}403{% endblock %}
6{% block description %}You are not allowed to access this page.{% 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">403</h1>
17 <p>You are not allowed to access this page.</p>
18 </div>
19 </div>
20</div>
21{% endblock %}