source code of /oops/410.cgi.src

Last modified
Lines 59

Parent directory Download CGIread sitemap Main page

Quick links: content text

  1. #!/bin/sh
  2. echo Status: 410
  3. echo Content-Type: text/html
  4. echo
  5. cat << __EOF__
  6. <!DOCTYPE html>
  7. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  8.     <head>
  9.         <meta charset="utf-8"/>
  10.         <meta name="viewport" content="width=device-width, initial-scale=1"/>
  11.         <link rel="stylesheet" href="/style.css" type="text/css"/>
  12.         <style type="text/css">
  13.             body
  14.             {
  15.                 color: #005500;
  16.                 background-color: #ffffff;
  17.             }
  18.             a:link    { color: #0000aa; }
  19.             a:visited { color: #aa00aa; }
  20.             @media (min-width: 460px)
  21.             {
  22.                 img
  23.                 {
  24.                     float: left;
  25.                     max-width: 75%;
  26.                 }
  27.                 #text
  28.                 {
  29.                     min-height: 576px;
  30.                 }
  31.                 #content p
  32.                 {
  33.                     max-width: 75em;
  34.                 }
  35.             }
  36.         </style>
  37.         __TITLE__
  38.         <!--<meta name="description" content="INSERT DESRIPTION HERE"/>-->
  39.     </head>
  40.     <body>
  41.         __NAVIGATION__
  42.         <main><div id="content">
  43.             __H1__
  44.             <!-- Insert body here. NOTE: description and keywords -->
  45.             <img src="/oops/recycled-768x576.jpeg" width="768" height="576"
  46.             alt="All bytes of this page have been reused... to make this image"
  47.             title="... to make this image."
  48.             />
  49.             <div id="text">
  50.                 <p>The page you are looking for has been deleted.</p>
  51.                 <p>Don't bother trying again; the page won't be undeleted.</p>
  52.             </div>
  53.         </div></main>
  54.         __FOOTER__
  55.     </body>
  56. </html>
  57. __EOF__