38 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <!--
 | |
|                      A
 | |
|  _     _   _     _       _                 _ 
 | |
| | |__ | |_| |__ | | __ _| |__  ___   _ __ | |
 | |
| | '_ \| __| '_ \| |/ _` | '_ \/ __| | '_ \| |
 | |
| | |_) | |_| | | | | (_| | |_) \__ \_| |_) | |
 | |
| |_.__/ \__|_| |_|_|\__,_|_.__/|___(_) .__/|_|
 | |
|                                     |_|      
 | |
|                 production
 | |
| -->
 | |
| <html lang="en">
 | |
|   <head>
 | |
|     <meta charset="utf-8">
 | |
|     <meta http-equiv="X-UA-Compatible" content="IE=edge">
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1">
 | |
|     <title>Q3Stats</title>
 | |
| 
 | |
|     <link href="static/css/q3stats.css" rel="stylesheet">
 | |
|     <link rel="shortcut icon" href="static/img/powerups/Quad.png">
 | |
|   </head>
 | |
| 
 | |
|   <body id="server-error" class="error-{{ error_code }}">
 | |
|     <div class="q3stats-error-view">
 | |
|       <div class="container">
 | |
|         <div class="row">
 | |
|           <div class="col-sm-6 col-sm-offset-3 text-center">
 | |
|             <h2>Whoops!</h2>
 | |
|             <p class="lead">Apparently something went wrong. Sorry for that.</p>
 | |
|             <p><a class="btn btn-primary" href="{{ url_for('frontend.get_frontend_index') }}">Go to the app »</a></p>
 | |
|             <p class="text-muted"><small>Error code: {{ error_code }}</small></p>
 | |
|           </div>
 | |
|         </div>
 | |
|       </div>
 | |
|     </div>
 | |
|   </body>
 | |
| </html>
 |