Suds/templates/404.html

18 lines
485 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>404 - Suds</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="{{ url_for('static', filename='css/main.css') }}">
<link rel="icon" type="image/png" href="{{ url_for('static', filename='img/favicon.png') }}">
</head>
<body>
{% include "header.html" %}
<center>
<h1 style="font-size:10em;line-height:0em;">404</h1>
<p>This resource cannot be found</p>
</center>
</body>
</html>