29 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html>
 | 
						|
<head>
 | 
						|
	<title><?php echo configuration('websiteTitle');?> >> {ERROR_LEVEL}</title>
 | 
						|
	<link rel="stylesheet" href="<?php echo $websiteURL; ?>/system/SuperSmash/pages/css/main.css" type="text/css"/>
 | 
						|
	<link rel="shortcut icon" href="<?php echo $websiteURL; ?>/system/SuperSmash/pages/images/favicon.ico">
 | 
						|
</head>
 | 
						|
 | 
						|
<body>
 | 
						|
	<div id="error-box">
 | 
						|
		<?php $language = system\SuperSmash\SuperSmash::language(); ?>
 | 
						|
		<div class="error-copyright"><small>{ERROR_COPYRIGHT}</small></div>
 | 
						|
		<div class="error-header">{ERROR_LEVEL}</div>
 | 
						|
		<div class="error-message">
 | 
						|
			<p>
 | 
						|
				<?php echo $language->get('notFoundErrorMessage'); ?><a href="mailto:<?php echo configuration('webmasterEmail');?>"> <?php echo $language->get('notFoundEmail'); ?></a>. <br/ > <br/ >
 | 
						|
			</p>
 | 
						|
			<b><?php echo $language->get('errorMessage'); ?></b> {MESSAGE}
 | 
						|
		</div>
 | 
						|
	</div>
 | 
						|
<br /><br />
 | 
						|
        <div id="footer">
 | 
						|
               <small>
 | 
						|
                    <?php echo $language->get('footerRendered'); ?> {elapsed} <?php echo $language->get('footerSeconds'); ?> {usage}<br />
 | 
						|
                    SuperSmash Framework © <?php echo date("Y");?>, <a href="http://www.SuperSmash.nl">SuperSmash</a>
 | 
						|
                </small>
 | 
						|
        </div> 	
 | 
						|
</body>
 | 
						|
</html>
 |