File: missingpage.html

package info (click to toggle)
python-werkzeug 1.0.1%2Bdfsg1-2%2Bdeb11u1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,888 kB
  • sloc: python: 21,897; javascript: 173; makefile: 36; xml: 16
file content (11 lines) | stat: -rw-r--r-- 326 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
{% extends "layout.html" %}
{% block body %}
<h2>Page Not Found</h2>
<p>
  The requested page does not exist on this server.  If you expect something
  here (for example a server) it probably went away after the last update.
</p>
<p>
  go back to <a href="{{ url_for('serverlist') }}">the server list</a>.
</p>
{% endblock %}