source code of /oops/410.cgi.src
Last modified | |
Lines | 59 |
Parent directory Download CGIread sitemap Main page
#!/bin/sh
echo Status: 410
echo Content-Type: text/html
echo
cat << __EOF__
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="stylesheet" href="/style.css" type="text/css"/>
<style type="text/css">
body
{
color: #005500;
background-color: #ffffff;
}
a:link { color: #0000aa; }
a:visited { color: #aa00aa; }
@media (min-width: 460px)
{
img
{
float: left;
max-width: 75%;
}
#text
{
min-height: 576px;
}
#content p
{
max-width: 75em;
}
}
</style>
__TITLE__
<!--<meta name="description" content="INSERT DESRIPTION HERE"/>-->
</head>
<body>
__NAVIGATION__
<main><div id="content">
__H1__
<!-- Insert body here. NOTE: description and keywords -->
<img src="/oops/recycled-768x576.jpeg" width="768" height="576"
alt="All bytes of this page have been reused... to make this image"
title="... to make this image."
/>
<div id="text">
<p>The page you are looking for has been deleted.</p>
<p>Don't bother trying again; the page won't be undeleted.</p>
</div>
</div></main>
__FOOTER__
</body>
</html>
__EOF__