mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 02:36:28 +00:00 
			
		
		
		
	
		
			
	
	
		
			17 lines
		
	
	
		
			363 B
		
	
	
	
		
			Twig
		
	
	
	
	
	
		
		
			
		
	
	
			17 lines
		
	
	
		
			363 B
		
	
	
	
		
			Twig
		
	
	
	
	
	
|   | 
 | ||
|  | {% if breadcrumbs|length > 0 %}
 | ||
|  | 
 | ||
|  | <ol class="breadcrumb">
 | ||
|  |     {% for breadcrumb in breadcrumbs %}
 | ||
|  |         {% if breadcrumb.url and not loop.last %}
 | ||
|  |             <li><a href="{{ breadcrumb.url }}">{{ breadcrumb.title }}</a></li>
 | ||
|  |         {% else %}
 | ||
|  |             <li class="active">{{ breadcrumb.title }}</li>
 | ||
|  |         {% endif %}
 | ||
|  |     {% endfor %}
 | ||
|  | </ol>
 | ||
|  | {% endif %}
 | ||
|  | 
 | ||
|  | 
 | ||
|  | 
 |