
* add the current admin plugin to the breadcrumb * use proper translations for the various modes * do no longer rely on JavaScript for the enhanced breadcrumb * add image name in breadcrumb for detail view
14 lines
323 B
PHP
Executable file
14 lines
323 B
PHP
Executable file
<?php
|
|
if(!defined('DOKU_INC')) die();
|
|
|
|
if($conf['breadcrumbs']): ?>
|
|
|
|
|
|
<h6 class="sr-only" role="heading" aria-level="2"><?php echo tpl_getLang('head_breadcrumb') ?></h6>
|
|
<p><?php
|
|
tpl_youarehere();
|
|
\dokuwiki\template\sprintdoc\Template::getInstance()->breadcrumbSuffix();
|
|
?></p>
|
|
|
|
|
|
<?php endif ?>
|