mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-22 15:21:52 +00:00
9 lines
289 B
HTML
9 lines
289 B
HTML
{% extends "expobase.html" %}
|
|
{% block title %}Directory not found {{ path }}{% endblock %}
|
|
{% block body %}
|
|
<h1>Directory not found '{{ path }}'</h1>
|
|
<h3>Click here: <a href="/{{ subpath }}">/{{ subpath }}</a> </h3>
|
|
<p>i.e. without the final '/'
|
|
{% include "menu.html" %}
|
|
{% endblock %}
|