1<?php
2/**
3 * DokuWiki Bootstrap3 Template: Breadcrumbs
4 *
5 * @link     http://dokuwiki.org/template:bootstrap3
6 * @author   Giuseppe Di Terlizzi <giuseppe.diterlizzi@gmail.com>
7 * @license  GPL 2 (http://www.gnu.org/licenses/gpl.html)
8 */
9
10global $conf;
11global $TPL;
12
13?>
14<?php if ($conf['youarehere'] || $conf['breadcrumbs']): ?>
15<!-- breadcrumbs -->
16<nav id="dw__breadcrumbs" class="small">
17
18    <hr/>
19
20    <?php if($conf['youarehere']): ?>
21    <div class="dw__youarehere">
22        <?php $TPL->getYouAreHere()?>
23    </div>
24    <?php endif; ?>
25
26    <?php if($conf['breadcrumbs']): ?>
27    <div class="dw__breadcrumbs hidden-print">
28        <?php $TPL->getBreadcrumbs() ?>
29    </div>
30    <?php endif; ?>
31
32    <hr/>
33
34</nav>
35<!-- /breadcrumbs -->
36<?php endif ?>
37