source code of /oops/410.cgi

Last modified
Lines 113

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