mirror of
https://github.com/oupala/apaxy.git
synced 2026-01-15 20:02:30 +01:00
Add a favicon at the root level and remove incorrect favicon links in error pages. fix #128
19 lines
425 B
HTML
19 lines
425 B
HTML
<DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Error 404</title>
|
|
<!-- Stylesheets -->
|
|
<link rel="stylesheet" href="{FOLDERNAME}/theme/style.css" />
|
|
</head>
|
|
<body class="fadeDown">
|
|
<center>
|
|
<h1>Error.</h1>
|
|
<div class="errorCode">404
|
|
</div>
|
|
<p>I can't find what you are looking for...</p>
|
|
</center>
|
|
</body>
|
|
</html>
|