mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 10:47:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
		
			992 B
		
	
	
	
		
			Twig
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			992 B
		
	
	
	
		
			Twig
		
	
	
	
	
	
| {% extends "./layout/guest" %}
 | |
| 
 | |
| {% block content %}
 | |
| 
 | |
|     <div class="row">
 | |
|         <div class="col-lg-12 col-md-12 col-sm-12">
 | |
|             <h3 class="text-danger">Sorry, an error occurred.</h3>
 | |
|         </div>
 | |
|     </div>
 | |
| 
 | |
|     <div class="row">
 | |
|         <div class="col-lg-12 col-md-12 col-sm-12">
 | |
|             <p>{{ message |default('General unknown errror')|raw }}</p>
 | |
|         </div>
 | |
|     </div>
 | |
| 
 | |
|     <div class="row">
 | |
|         <div class="col-lg-12 col-md-12 col-sm-12">
 | |
|             <p>
 | |
|                 If you do not know how to handle this error, please open an issue on
 | |
|                 <a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub</a>
 | |
|                 or <a href="mailto:thegrumpydictator@gmail.com">send me a message</a>.
 | |
|             </p>
 | |
|         </div>
 | |
|     </div>
 | |
| 
 | |
|     <div class="row">
 | |
|         <div class="col-lg-12 col-md-12 col-sm-12">
 | |
|             <p><a href="{{ route('index') }}">Follow this link back to the index.</a></p>
 | |
|         </div>
 | |
|     </div>
 | |
| {% endblock %}
 |