blob: 4fdfe2a7a97616679604af958b79bed2c2e80947 (
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 %}
|