source code of /oops/410.cgi

Last modified
Lines 108

Parent directory Download CGIread sitemap Main page

Quick links: contact content footer navigation text title

  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>410 - Gone forever; not coming back</title>
  38.         <!--<meta name="description" content="INSERT DESRIPTION HERE"/>-->
  39.     </head>
  40.     <body>
  41.         
  42. <!-- BEGIN autogenerated navigation -->
  43. <nav><div id="navigation"><div id="nav_inner">
  44. <p><a href="#content" class="textonly">Skip navigation</a></p>
  45. <p class="row">
  46. <span class="textonly" translate="no">[</span><a class="head" href="/">Home</a><span class="textonly" translate="no">]</span>
  47. &gt;&gt;
  48. <span class="textonly" translate="no">[</span><a class="sub" href="/projects/anonymine/">Anonymine</a><span class="textonly" translate="no">]</span>
  49. <span class="textonly" translate="no">[</span><a class="sub" href="/projects/light-sensor/">Analog light sensor</a><span class="textonly" translate="no">]</span>
  50. <span class="textonly" translate="no">[</span><a class="sub" href="/projects/PLLM-M702A/">Reverse-engineered schematics for PLLM-M702A</a><span class="textonly" translate="no">]</span>
  51. <span class="textonly" translate="no">[</span><a class="sub" href="/small-scripts/">Small scripts</a><span class="textonly" translate="no">]</span>
  52. </p>
  53. <p class="row">
  54. <span class="textonly" translate="no">[</span><a class="sub" href="/sitemap.py">Sitemap</a><span class="textonly" translate="no">]</span>
  55. </p>
  56. <hr class="textonly"/>
  57. </div></div></nav>
  58. <!-- END autogenerated navigation -->
  59.         <main><div id="content">
  60.             <h1 id="title">410 - Gone forever; not coming back</h1>
  61.             <!-- Insert body here. NOTE: description and keywords -->
  62.             <img src="/oops/recycled-768x576.jpeg" width="768" height="576"
  63.             alt="All bytes of this page have been reused... to make this image"
  64.             title="... to make this image."
  65.             />
  66.             <div id="text">
  67.                 <p>The page you are looking for has been deleted.</p>
  68.                 <p>Don't bother trying again; the page won't be undeleted.</p>
  69.             </div>
  70.         </div></main>
  71.         
  72. <!-- INCLUDED FOOTER -->
  73.     <hr class="textonly"/>
  74.     <p>
  75.         Copyright © Oskar Skog<br/>
  76.         Website content released under the <a
  77.         href="https://creativecommons.org/licenses/by/4.0/" rel="license noopener"
  78.         target="_blank">Creative Commons Attribution (CC-BY 4.0)</a> license
  79.         and my software usually under the <span class="a"><a target="_blank"
  80.         rel="noopener"
  81.         href="https://opensource.org/license/BSD-2-Clause">FreeBSD license
  82.         (2-clause)</a>.</span>
  83.         <br/>
  84.         Images may be from other sites, I should have cited useful sources
  85.         somewhere on the page.
  86.         <span class="notprint">Contact me if I haven't.</span>
  87.     </p>
  88.     <p id="contact" class="notprint">
  89.         You can contact me at: <a href="mailto:oskar@oskog97.com"
  90.         rel="noopener" target="_blank">oskar@oskog97.com</a>
  91.         <span class="a">(<a href="/pgp-pub/oskar.asc"
  92.                             >PGP public key</a>)</span>
  93.     </p>
  94.     <p> <a class="notprint" href="https://oskog97.com/read/?path=/style.css">
  95.             CSS Stylesheet
  96.         </a>
  97.     </p>
  98. </div></footer>
  99. <!-- END OF INCLUDED FOOTER -->
  100.     </body>
  101. </html>
  102. __EOF__