mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-07-06 22:23:24 -07:00
14 lines
344 B
PHP
14 lines
344 B
PHP
|
|
{% 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
|
|
@endforeach
|
|
</ol>
|
|
@endif
|