blob: 03569dea889d0394f006720e15e3c3e8ec9cc1bc (
plain)
1
2
3
4
5
6
7
|
{% extends "expobase.html" %}
{% block title %}Page not found {{ path }}{% endblock %}
{% block body %}
<h1>Page not found {{ path }}</h1>
<a href="{%url editflatpage path %}">Create this page.</a>
{% include "menu.html" %}
{% endblock %}
|