- introduce 404 page - fix chrome display bug - fixed about not showing version - removed unused dependecies - removed dead code from interface.js - moved layout to dedicated page
		
			
				
	
	
		
			47 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html>
 | 
						|
 | 
						|
<head>
 | 
						|
    <meta charset="utf-8">
 | 
						|
    <meta name="viewport" content="width=device-width, initial-scale=1">
 | 
						|
 | 
						|
    <title>openCountdown - Not found</title>
 | 
						|
    <meta name="description" content="openCountdown">
 | 
						|
    <meta name="author" content="TheGreydiamond">
 | 
						|
 | 
						|
    <script type="text/javascript" src="/js/cookie.js"></script>
 | 
						|
 | 
						|
    <link rel="stylesheet/less" type="text/css" href="/css/errorPage/styles.less" />
 | 
						|
 | 
						|
 | 
						|
    <script>
 | 
						|
        less = {
 | 
						|
            javascriptEnabled: true
 | 
						|
        };
 | 
						|
    </script>
 | 
						|
    <script src="/js/less.min.js"></script>
 | 
						|
 | 
						|
    <link rel="stylesheet" href="/css/errorPage/style.css">
 | 
						|
 | 
						|
    <link rel="stylesheet" href="/css/bootstrap-icons.css">
 | 
						|
</head>
 | 
						|
 | 
						|
<body>
 | 
						|
    <div class="container">
 | 
						|
        <h1 class="rainbow">
 | 
						|
            <div class="glitch" data-text="404">
 | 
						|
                404
 | 
						|
            </div>
 | 
						|
        </h1>
 | 
						|
        <h2 class="color-foreground">
 | 
						|
            We're sorry, the page you were looking for isn't found here.<br>
 | 
						|
            The link you followed may either be broken or no longer exists. Please
 | 
						|
            check your spelling.<br>
 | 
						|
 | 
						|
            <a href="/"><i class="bi bi-house-door"></i> Back home</a>
 | 
						|
        </h2>
 | 
						|
 | 
						|
    </div>
 | 
						|
</body>
 | 
						|
 | 
						|
</html> |