mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 02:36:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			45 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Twig
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Twig
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html>
 | |
| <head>
 | |
|     <base href="{{ route('index') }}/">
 | |
|     <meta charset="utf-8">
 | |
|     <meta http-equiv="X-UA-Compatible" content="IE=edge">
 | |
|     <title>Firefly III | Maintenance Mode</title>
 | |
|     <!-- Tell the browser to be responsive to screen width -->
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1">
 | |
| 
 | |
|     <link rel="stylesheet" href="v2/plugins/local-fonts/gf-source.css" nonce="{{ JS_NONCE }}">
 | |
|     <link rel="stylesheet" href="v2/css/app.css" nonce="{{ JS_NONCE }}">
 | |
| 
 | |
| </head>
 | |
| <body>
 | |
| 
 | |
| <div class="container-fluid">
 | |
|     <div class="row">
 | |
|         <div class="col-12">
 | |
|             <div class="error-page">
 | |
|                 <h2 class="headline text-info">404</h2>
 | |
| 
 | |
|                 <div class="error-content">
 | |
|                     <h3><i class="fas fa-question-circle text-info"></i> 404 - Page not found</h3>
 | |
|                     <p>
 | |
|                         {{ trans('errors.404_header') }}
 | |
|                     </p>
 | |
|                     <p>
 | |
|                         {{ trans('errors.404_page_does_not_exist') }}
 | |
|                     </p>
 | |
|                     <p>
 | |
|                         {{ trans('errors.404_send_error') }}
 | |
|                     </p>
 | |
|                     <p>
 | |
|                         {{ trans('errors.404_github_link')|raw }}
 | |
|                     </p>
 | |
|                 </div>
 | |
|             </div>
 | |
|         </div>
 | |
|     </div>
 | |
| </div>
 | |
| </body>
 | |
| </html>
 | |
| 
 |