mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-22 15:21:52 +00:00
8 lines
286 B
HTML
8 lines
286 B
HTML
|
{% extends "expobase.html" %}
|
||
|
{% block title %}Page not found {{ path }}{% endblock %}
|
||
|
{% block body %}
|
||
|
<h1>Directory not displayed: {{ path }}</h1>
|
||
|
<p>Only individual files may be displayed from this directory. No directory listing available.
|
||
|
{% include "menu.html" %}
|
||
|
{% endblock %}
|