View | Details | Raw Unified | Return to bug 38685
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers.inc (-7 / +8 lines)
Lines 552-563 Link Here
552
552
553
[%# Used to build individual breadcrumb items in the breadcrumb nav %]
553
[%# Used to build individual breadcrumb items in the breadcrumb nav %]
554
[% BLOCK breadcrumb_item %]
554
[% BLOCK breadcrumb_item %]
555
    [% IF ( bc_active ) %]
555
    [% IF content.trim %]
556
        <li class="breadcrumb-item active" aria-current="page">
556
        [% IF ( bc_active ) %]
557
            <a href="#"> [% content | $raw %] </a>
557
            <li class="breadcrumb-item active" aria-current="page">
558
        </li>
558
                <a href="#"> [% content | $raw %] </a>
559
    [% ELSE %]
559
            </li>
560
        <li class="breadcrumb-item"> [% content | $raw %] </li>
560
        [% ELSE %]
561
            <li class="breadcrumb-item"> [% content | $raw %] </li>
562
        [% END %]
561
    [% END %]
563
    [% END %]
562
[% END %]
564
[% END %]
563
565
564
- 

Return to bug 38685