wok diff busybox/stuff/www/httpd/404.html @ rev 21015

updated gujin (2.8.6 -> 2.8.7)
author Hans-G?nter Theisgen
date Sun Mar 10 08:09:36 2019 +0100 (2019-03-10)
parents 307866ad479e
children
line diff
     1.1 --- a/busybox/stuff/www/httpd/404.html	Sun Mar 09 10:11:06 2014 +0100
     1.2 +++ b/busybox/stuff/www/httpd/404.html	Sun Mar 10 08:09:36 2019 +0100
     1.3 @@ -1,28 +1,32 @@
     1.4  <!DOCTYPE html>
     1.5 -<html xmlns="http://www.w3.org/1999/xhtml">
     1.6 +<html>
     1.7  <head>
     1.8 +	<meta charset="utf-8" />
     1.9  	<title>404 Not Found</title>
    1.10 -	<meta charset="utf-8" />
    1.11 -	<link rel="stylesheet" type="text/css" href="../style.css" />
    1.12 +	<link rel="stylesheet" type="text/css" href="/style.css" />
    1.13  </head>
    1.14  <body>
    1.15  
    1.16 -<!-- Header -->
    1.17 -<div id="header">
    1.18 +<header>
    1.19  	<h1>SliTaz Web Server</h1>
    1.20 -</div>
    1.21 +</header>
    1.22  
    1.23  <!-- Content -->
    1.24  <div id="content">
    1.25 -<h2>404 Not Found</h2>
    1.26 +<h2>Not Found</h2>
    1.27 +
    1.28 +<p>The requested URL <b id="uri"></b> was not found on this server.</p>
    1.29  
    1.30  <!-- End content -->
    1.31  </div>
    1.32  
    1.33 -<!-- Footer -->
    1.34 -<div id="footer">
    1.35 -    Copyright &copy; 2014 <a href="http://www.slitaz.org/">SliTaz GNU/Linux</a>
    1.36 -</div>
    1.37 +<script type="text/javascript">
    1.38 +document.getElementById('uri').innerText = window.location.pathname
    1.39 +</script>
    1.40 +
    1.41 +<footer>
    1.42 +Copyright &copy; 2015 <a href="http://www.slitaz.org/">SliTaz GNU/Linux</a>
    1.43 +</footer>
    1.44  
    1.45  </body>
    1.46  </html>