mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 02:36:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			594 B
		
	
	
	
		
			Twig
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			594 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') }}</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 %}
 |