mirror of
https://github.com/oupala/apaxy.git
synced 2026-03-06 20:21:06 +01:00
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
20 lines
464 B
HTML
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>
|