Files
Apaxy/apaxy/theme/403.html
oupala bb8503b85a fix: remove dependency to font Open Sans
We want apaxy to need as few dependencies as possible, and even less external dependencies (because we have control over external dependencies). This commit removes dependency to font Open Sans.

As pointed by nodisc in issue #59, there are some advantages in removing this dependency: no cross-site requests, no leaking of HTTP referers to font provider, works on LAN-only setups, no dependency on an external service.

fix #59
2019-05-28 15:09:52 +02:00

20 lines
464 B
HTML

<DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Error 403</title>
<link rel="shortcut icon" href="img/icon.png">
<!-- Stylesheets -->
<link rel="stylesheet" href="{FOLDERNAME}/theme/style.css" />
</head>
<body class="fadeDown">
<center>
<h1>Error.</h1>
<div class="errorCode">403
</div>
<p>You aren't allowed to be here.</p>
</center>
</body>
</html>