1<?php
2/* disable breadcrumb on login and denied pages */
3if(($ACT!="login") && ($ACT!="denied")){
4    ?><div class="before-content"><?php
5    /* BREADCRUMBS */
6        if($conf['breadcrumbs']){?>
7            <div class="breadcrumbs">
8            <?php tpl_breadcrumbs() ;?>
9            </div>
10        <?php }
11        if($conf['youarehere']){?>
12            <div class="youarehere">
13            <?php tpl_youarehere() ;?>
14            </div>
15        <?php }
16        $translation = plugin_load('helper','translation');
17        if ($translation){
18            echo '<div class="translation-switcher">' . $translation->showTranslations() . '</div>';
19        }
20    ?>
21    </div>
22<?php } ?>
23