wok-next annotate busybox/stuff/www/httpd/404.html @ rev 18005

busybox: fix using 404 (not found) page; show URL in the page.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Apr 28 17:26:09 2015 +0300 (2015-04-28)
parents 307866ad479e
children dd1205f552b8
rev   line source
pankso@16039 1 <!DOCTYPE html>
al@18005 2 <html>
pankso@16039 3 <head>
al@18005 4 <meta charset="utf-8" />
pankso@16039 5 <title>404 Not Found</title>
al@18005 6 <link rel="stylesheet" type="text/css" href="/style.css" />
pankso@16039 7 </head>
pankso@16039 8 <body>
pankso@16039 9
al@18005 10 <header>
pankso@16039 11 <h1>SliTaz Web Server</h1>
al@18005 12 </header>
pankso@16039 13
pankso@16039 14 <!-- Content -->
pankso@16039 15 <div id="content">
al@18005 16 <h2>Not Found</h2>
al@18005 17
al@18005 18 <p>The requested URL <b id="uri"></b> was not found on this server.</p>
pankso@16039 19
pankso@16039 20 <!-- End content -->
pankso@16039 21 </div>
pankso@16039 22
al@18005 23 <script type="text/javascript">
al@18005 24 document.getElementById('uri').innerText = window.location.pathname
al@18005 25 </script>
al@18005 26
al@18005 27 <footer>
al@18005 28 Copyright &copy; 2015 <a href="http://www.slitaz.org/">SliTaz GNU/Linux</a>
al@18005 29 </footer>
pankso@16039 30
pankso@16039 31 </body>
pankso@16039 32 </html>