22 lines
728 B
HTML
22 lines
728 B
HTML
<html>
|
|
<head>
|
|
<title>Not Found</title>
|
|
<meta name="save_as" content="404.html">
|
|
<meta name="date" content="2019-11-04T15:45Z">
|
|
</head>
|
|
<body>
|
|
<p>
|
|
The page you are looking for is not here.
|
|
Maybe it was but I have removed it.
|
|
Most likely it was intentionally.
|
|
If you think I made a mistake, please tell me.
|
|
</p>
|
|
<p id="message"></p>
|
|
<script>
|
|
if (location.href.indexOf('/akarmi/') >= 0) {
|
|
document.getElementById('message').innerHTML = 'If you are looking for the pictures that used to be here, you should definitely contact me. For reasons.';
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|