make a 404 page
This commit is contained in:
20
web/base.html
Normal file
20
web/base.html
Normal file
@@ -0,0 +1,20 @@
|
||||
<!doctype html>
|
||||
<html lang="pl">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<link rel="icon" type="image/svg+xml" href="favicon.svg" />
|
||||
<link
|
||||
rel="icon"
|
||||
type="image/png"
|
||||
sizes="64x64"
|
||||
href="favicon-x64.png"
|
||||
/>
|
||||
<link href="styles.css" rel="stylesheet" />
|
||||
<title>{% block title %}{{ title }}{% endblock %}</title>
|
||||
{% block head %} {% endblock %}
|
||||
</head>
|
||||
<body class="min-h-screen flex flex-col">
|
||||
{% block pagecontent %} {{ pagecontent }} {% endblock %}
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user